/* Vercel referansına ek sayfa bileşenleri */

/* Elementor HTML widget — tam genişlik taşma */
.elementor-widget-html .elementor-widget-container {
  overflow: visible;
}

/* Boxed sütundan viewport kenarına taşır */
.depar-bleed-full {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ── Hero ── */
.depar-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(520px, 85vh, 920px);
  padding: 0;
  overflow: hidden;
}

.depar-hero.depar-section {
  padding-top: 0;
  padding-bottom: 0;
}

.depar-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050505;
}

.depar-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.depar-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.35) 50%, rgba(8, 8, 8, 0.85));
}

.depar-hero__bg-overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 8, 0.5), transparent);
}

.depar-hero__inner {
  max-width: var(--depar-max-w);
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .depar-hero__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.depar-marquee-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  flex-shrink: 0;
}

.depar-marquee-wrap .depar-marquee,
.depar-marquee.depar-marquee--strip {
  width: 100%;
}

.depar-marquee--strip {
  border-top: 1px solid var(--depar-border);
  border-bottom: 1px solid var(--depar-border);
  background: rgba(8, 8, 8, 0.88);
  padding: 0.875rem 0;
}

.depar-marquee--strip .depar-marquee__track {
  animation-duration: 35s;
}

.depar-marquee--strip .depar-marquee__item {
  padding: 0 1.5rem;
}

.depar-hero__title {
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: none;
}

.depar-hero-badge {
  display: none;
  position: fixed;
  right: 2rem;
  z-index: 20;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.3s, top 0.15s ease-out;
}

@media (min-width: 1024px) {
  .depar-hero-badge {
    display: flex;
  }
}

.depar-hero-badge__ring {
  width: 6rem;
  height: 6rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.depar-hero-badge__spin {
  position: absolute;
  inset: 0;
  transition: transform 0.1s linear;
}

.depar-hero-badge__spin::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 1px dashed rgba(232, 75, 26, 0.25);
}

.depar-hero-badge__spin svg {
  width: 100%;
  height: 100%;
}

.depar-hero-badge__spin text {
  fill: rgba(240, 235, 224, 0.3);
  font-size: 9px;
  font-family: var(--depar-font-mono);
  letter-spacing: 3px;
}

.depar-hero-badge__center {
  position: relative;
  z-index: 1;
  color: var(--depar-accent);
  font-family: var(--depar-font-heading);
  font-weight: 700;
  font-size: 0.875rem;
}

.depar-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .depar-hero-actions {
    grid-template-columns: repeat(5, 1fr);
  }
}

.depar-hero-action {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  text-align: left;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 10px 25px rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(8px);
}

.depar-hero-action:hover {
  transform: scale(1.03);
}

.depar-hero-action:active {
  transform: scale(0.98);
}

.depar-hero-action__label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.depar-hero-action__sub {
  font-size: 10px;
  opacity: 0.65;
  line-height: 1.2;
}

.depar-hero-action--accent {
  background: var(--depar-accent);
  color: #fff;
}

.depar-hero-action--dark {
  background: var(--depar-fg);
  color: var(--depar-bg);
}

.depar-hero-action--green {
  background: var(--depar-whatsapp);
  color: #fff;
}

.depar-hero-action--card {
  background: var(--depar-card);
  color: var(--depar-fg);
  border: 1px solid var(--depar-border);
}

.depar-hero-action--question {
  grid-column: span 2;
  background: var(--depar-fg);
  color: var(--depar-bg);
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

@media (min-width: 640px) {
  .depar-hero-action--question {
    grid-column: span 2;
  }
}

.depar-soru-marquee-wrap {
  height: 1.25rem;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.depar-soru-marquee {
  display: flex;
  white-space: nowrap;
  animation: depar-soru-marquee 55s linear infinite;
}

.depar-soru-marquee span {
  font-size: 10px;
  opacity: 0.75;
  font-family: var(--depar-font-mono);
  padding: 0 1.25rem;
}

.depar-soru-marquee .dot {
  color: var(--depar-accent);
  opacity: 0.8;
}

/* ── Hizmetler listesi ── */
.depar-services-list {
  border-top: 1px solid var(--depar-border);
}

.depar-service-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--depar-border);
  text-decoration: none;
  color: inherit;
  transition: padding 0.3s, color 0.3s;
}

.depar-service-row:hover {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .depar-service-row {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}

.depar-service-row__num {
  font-family: var(--depar-font-mono);
  font-size: 0.75rem;
  color: rgba(240, 235, 224, 0.2);
  width: 2.5rem;
  flex-shrink: 0;
}

.depar-service-row__tag {
  font-family: var(--depar-font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--depar-accent);
  border: 1px solid rgba(232, 75, 26, 0.2);
  background: rgba(232, 75, 26, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-align: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .depar-service-row__tag {
    width: 8rem;
  }
}

.depar-service-row__title {
  font-family: var(--depar-font-heading);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .depar-service-row__title {
    font-size: 1.5rem;
    width: 14rem;
  }
}

.depar-service-row:hover .depar-service-row__title {
  color: var(--depar-accent);
}

.depar-service-row__desc {
  font-size: 0.875rem;
  color: rgba(240, 235, 224, 0.45);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .depar-service-row__desc {
    margin-left: auto;
    max-width: 20rem;
  }
}

.depar-service-row__arrow {
  display: none;
  color: rgba(240, 235, 224, 0.15);
  flex-shrink: 0;
  transition: color 0.3s, transform 0.3s;
}

@media (min-width: 640px) {
  .depar-service-row__arrow {
    display: block;
    margin-left: 1.5rem;
  }
}

.depar-service-row:hover .depar-service-row__arrow {
  color: var(--depar-accent);
  transform: translate(2px, -2px);
}

/* ── Çalışmalar grid ── */
.depar-work-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--depar-muted);
  cursor: pointer;
}

.depar-work-card--wide {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .depar-work-card--wide {
    grid-column: span 2;
  }
}

.depar-work-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.depar-work-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%);
  transition: transform 0.7s, filter 0.7s;
}

.depar-work-card:hover .depar-work-card__img img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.depar-work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.3), transparent);
  transform: translateY(100%);
  transition: transform 0.5s;
}

.depar-work-card:hover .depar-work-card__overlay {
  transform: translateY(0);
}

.depar-work-card__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  transform: translateY(0.5rem);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}

.depar-work-card:hover .depar-work-card__meta {
  opacity: 1;
  transform: translateY(0);
}

.depar-work-tabs button.is-active {
  background: var(--depar-accent);
  color: #fff;
  border-color: var(--depar-accent);
}

.depar-site .depar-work-tabs button:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(240, 235, 224, 0.7);
}

.depar-site .depar-work-tabs button.is-active:hover {
  background: var(--depar-accent);
  color: #fff;
}

.depar-works-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .depar-works-featured {
    grid-template-columns: repeat(3, 1fr);
  }
}

.depar-works-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .depar-works-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Yazılım kartları ── */
.depar-software-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .depar-software-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .depar-software-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.depar-software-card {
  background: var(--depar-bg);
  border: 1px solid var(--depar-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.5s, transform 0.5s;
}

.depar-software-card:hover {
  border-color: rgba(232, 75, 26, 0.3);
  transform: translateY(-4px);
}

.depar-software-card__img {
  aspect-ratio: 16 / 8;
  overflow: hidden;
  position: relative;
  background: var(--depar-muted);
}

.depar-software-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.7s, transform 0.7s, filter 0.7s;
}

.depar-software-card:hover .depar-software-card__img img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

.depar-software-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.8), transparent);
}

/* ── Testimonial wheel extras ── */
.depar-wheel__fade-top,
.depar-wheel__fade-bottom {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  height: 9rem;
  z-index: 10;
}

.depar-wheel__fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--depar-bg), rgba(8, 8, 8, 0.92), transparent);
}

.depar-wheel__fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--depar-bg), rgba(8, 8, 8, 0.92), transparent);
}

.depar-wheel__orbit {
  pointer-events: none;
  position: absolute;
  inset: -0.75rem;
  top: -2rem;
  border-radius: 50%;
  border: 1px dashed rgba(232, 75, 26, 0.2);
  transform: scaleX(0.78) scaleY(1.08);
}

.depar-wheel__progress {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.25rem;
}

.depar-wheel__progress-bar {
  flex: 1;
  height: 2px;
  background: var(--depar-border);
  border-radius: 9999px;
  overflow: hidden;
}

.depar-wheel__progress-fill {
  height: 100%;
  background: var(--depar-accent);
  border-radius: 9999px;
  transition: width 0.5s ease-out;
}

.depar-testimonial-quote-mark {
  color: var(--depar-accent);
  font-size: 1.875rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--depar-font-heading);
}

.depar-wheel__initial {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(232, 75, 26, 0.15);
  border: 1px solid rgba(232, 75, 26, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--depar-accent);
  font-weight: 700;
  font-size: 0.875rem;
}

/* ── İletişim ── */
.depar-contact {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.depar-contact__bg {
  position: absolute;
  inset: 0;
  background: var(--depar-accent);
}

.depar-contact__watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--depar-font-heading);
  font-size: clamp(12rem, 25vw, 28rem);
  line-height: 1;
}

.depar-contact__inner {
  position: relative;
  z-index: 1;
}

.depar-contact input,
.depar-contact textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  outline: none;
  font-family: inherit;
}

.depar-contact input:focus,
.depar-contact textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.depar-contact input::placeholder,
.depar-contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.depar-contact__submit {
  flex: 1;
  background: #fff;
  color: var(--depar-accent);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}

.depar-contact__submit:hover {
  background: rgba(255, 255, 255, 0.92);
}

.depar-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.depar-contact__info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Web tasarım monitör ── */
.depar-monitor {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.depar-monitor__frame {
  border-radius: 0.75rem 0.75rem 0 0;
  background: #1a1a1a;
  border: 1px solid var(--depar-border);
  padding: 0.5rem 0.5rem 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.depar-monitor__bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.25rem 0.375rem;
  margin-bottom: 0.375rem;
}

.depar-monitor__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
}

.depar-monitor__url {
  flex: 1;
  background: rgba(8, 8, 8, 0.6);
  border-radius: 0.25rem;
  padding: 0.125rem 0.5rem;
  font-size: 8px;
  color: rgba(240, 235, 224, 0.4);
  font-family: var(--depar-font-mono);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.depar-monitor__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.375rem 0.375rem 0 0;
  background: #0a0a0a;
  border: 1px solid rgba(240, 235, 224, 0.08);
}

.depar-monitor__screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.depar-monitor__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.depar-monitor__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  color: rgba(240, 235, 224, 0.35);
  font-size: 10px;
  text-transform: uppercase;
}

.depar-monitor__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(1px);
  transition: opacity 0.3s;
}

.depar-monitor:hover .depar-monitor__hover {
  opacity: 1;
}

.depar-site button.depar-monitor:hover {
  background: rgba(255, 255, 255, 0.04);
}

.depar-monitor__stand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.depar-monitor__neck {
  width: 2.5rem;
  height: 0.5rem;
  background: #1a1a1a;
  border-left: 1px solid var(--depar-border);
  border-right: 1px solid var(--depar-border);
}

.depar-monitor__base {
  width: 4rem;
  height: 0.375rem;
  background: #141414;
  border-radius: 0 0 0.25rem 0.25rem;
  border: 1px solid var(--depar-border);
}

.depar-web-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  background: var(--depar-bg);
}

.depar-web-popup.is-open {
  display: flex;
}

.depar-web-popup__header {
  flex-shrink: 0;
  border-bottom: 1px solid var(--depar-border);
  padding: 3.5rem 1.25rem 1.25rem;
  position: relative;
}

.depar-web-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid var(--depar-border);
  background: transparent;
  color: var(--depar-fg);
  cursor: pointer;
  font-size: 1.25rem;
}

.depar-site button.depar-web-popup__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--depar-fg);
}

.depar-web-popup__frame {
  flex: 1;
  position: relative;
  min-height: 0;
}

.depar-web-popup__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.depar-section-title {
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.depar-section--card-bg {
  background: var(--depar-card);
}

.depar-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s, transform 0.6s;
}

.depar-team-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* ── Ortak section desc ── */
.depar-section-desc {
  color: rgba(240, 235, 224, 0.45);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  max-width: 36rem;
}

/* ── Sosyal Medya: Phone Feed ── */
.depar-phone-section .depar-container {
  max-width: 100%;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.depar-phone-wall {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: nowrap;
  padding: 2rem 0 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.depar-phone-wall::-webkit-scrollbar {
  display: none;
}

.depar-phone {
  flex: 0 0 auto;
  width: clamp(240px, 24vw, 300px);
  transform: scale(0.88);
  opacity: 0.7;
  transition: transform 0.35s, opacity 0.35s;
}

.depar-phone.is-center {
  transform: scale(1.05);
  opacity: 1;
  z-index: 2;
}

.depar-phone__device {
  border: 2px solid rgba(240, 235, 224, 0.12);
  border-radius: 1.75rem;
  background: #0a0a0a;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.depar-phone__notch {
  width: 5rem;
  height: 0.35rem;
  background: #111;
  border-radius: 9999px;
  margin: 0.5rem auto 0;
}

.depar-phone__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--depar-border);
}

.depar-phone__avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--depar-accent), #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.depar-phone__label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.1;
}

.depar-phone__handle {
  font-family: var(--depar-font-mono);
  font-size: 9px;
  color: rgba(240, 235, 224, 0.4);
}

.depar-phone__scroll {
  height: clamp(380px, 42vw, 460px);
  overflow: hidden;
  position: relative;
}

.depar-phone__track {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem;
  animation: depar-phone-scroll 45s linear infinite;
}

.depar-phone-post {
  border: 1px solid var(--depar-border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--depar-card);
}

.depar-phone-post__head {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.625rem;
}

.depar-phone-post__avatar {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--depar-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

.depar-phone-post__handle {
  font-size: 9px;
  font-family: var(--depar-font-mono);
  color: rgba(240, 235, 224, 0.45);
}

.depar-phone-post__img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.depar-phone-post__meta {
  padding: 0.5rem 0.625rem 0.75rem;
  font-size: 10px;
  color: rgba(240, 235, 224, 0.55);
}

.depar-phone-post__meta p {
  margin: 0.25rem 0 0;
  line-height: 1.35;
}

@keyframes depar-phone-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.depar-phone__tab {
  text-align: center;
  margin-top: 0.875rem;
}

.depar-phone__tab-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(240, 235, 224, 0.75);
}

.depar-phone__tab-handle {
  display: block;
  font-family: var(--depar-font-mono);
  font-size: 9px;
  color: rgba(240, 235, 224, 0.35);
  margin-top: 0.15rem;
}

.depar-phone.is-center .depar-phone__tab-label {
  color: var(--depar-fg);
}

.depar-phone.is-center .depar-phone__tab-handle {
  color: var(--depar-accent);
}

/* ── Google Ads Dashboard ── */
.depar-ads-panel {
  border: 1px solid var(--depar-border);
  border-radius: var(--depar-radius);
  background: #fff;
  color: #202124;
  overflow: hidden;
}

.depar-ads-panel__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #e8eaed;
  background: #f8f9fa;
}

.depar-ads-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.depar-ads-panel__logo {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: #4285f4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.depar-ads-panel__search {
  flex: 1;
  min-width: 160px;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #dadce0;
  font-size: 0.8rem;
  color: #5f6368;
}

.depar-ads-panel__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.depar-ads-panel__avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: #1a73e8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.depar-ads-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0;
  border-bottom: 1px solid #e8eaed;
}

.depar-ads-metric {
  padding: 1rem;
  border-right: 1px solid #e8eaed;
}

.depar-ads-metric:last-child {
  border-right: none;
}

.depar-ads-metric__label {
  font-size: 10px;
  text-transform: uppercase;
  color: #5f6368;
  letter-spacing: 0.05em;
}

.depar-ads-metric__value {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0.2rem 0;
}

.depar-ads-metric__change {
  font-size: 0.75rem;
  font-weight: 600;
}

.depar-ads-chart-wrap {
  padding: 1rem;
  border-bottom: 1px solid #e8eaed;
}

.depar-ads-chart__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.depar-ads-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 120px;
  padding-top: 0.5rem;
}

.depar-ads-chart__bar {
  flex: 1;
  background: linear-gradient(to top, #1a73e8, #8ab4f8);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  position: relative;
}

.depar-ads-chart__bar span {
  position: absolute;
  bottom: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  color: #9aa0a6;
}

.depar-ads-table-wrap {
  padding: 0.75rem 1rem 1rem;
  overflow-x: auto;
}

.depar-ads-table__head {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.depar-ads-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.8rem;
}

.depar-ads-table th,
.depar-ads-table td {
  padding: 0.65rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid #e8eaed;
}

.depar-ads-table th {
  color: #5f6368;
  font-weight: 500;
  font-size: 0.7rem;
}

.depar-ads-status {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 9999px;
  background: #dadce0;
}

.depar-ads-status.is-on {
  background: #34a853;
}

/* ── Video: Film Strip ── */
.depar-film-player {
  max-width: 56rem;
  margin: 0 auto;
}

.depar-film-viewfinder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--depar-radius);
  overflow: hidden;
  border: 1px solid var(--depar-border);
  background: #050505;
  margin-bottom: 1rem;
}

.depar-film-viewfinder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.depar-film-viewfinder__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.85), transparent 45%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  pointer-events: none;
}

.depar-film-viewfinder__client {
  font-family: var(--depar-font-mono);
  font-size: 10px;
  color: var(--depar-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.depar-film-viewfinder__title {
  font-family: var(--depar-font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin: 0.25rem 0;
}

.depar-film-viewfinder__rec {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--depar-font-mono);
  font-size: 10px;
  color: #ef4444;
  letter-spacing: 0.1em;
}

.depar-film-viewfinder__duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--depar-font-mono);
  font-size: 10px;
  background: rgba(8, 8, 8, 0.7);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.depar-film-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.depar-film-strip::-webkit-scrollbar {
  display: none;
}

.depar-film-thumb {
  flex: 0 0 120px;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  position: relative;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}

.depar-film-thumb.is-active {
  border-color: var(--depar-accent);
  opacity: 1;
}

.depar-site button.depar-film-thumb:hover:not(.is-active) {
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.04);
}

.depar-film-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.depar-film-thumb__dur {
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  font-family: var(--depar-font-mono);
  font-size: 9px;
  background: rgba(8, 8, 8, 0.75);
  padding: 0.1rem 0.3rem;
  border-radius: 0.2rem;
}

.depar-film-scrubber {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-family: var(--depar-font-mono);
  font-size: 10px;
  color: rgba(240, 235, 224, 0.45);
}

.depar-film-scrubber__track {
  flex: 1;
  height: 3px;
  background: var(--depar-border);
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}

.depar-film-scrubber__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 16.66%;
  background: var(--depar-accent);
  border-radius: 9999px;
  transition: width 0.25s ease;
}

.depar-film-scrubber__time {
  flex-shrink: 0;
}

/* ── Video: tam genişlik prodüksiyon film şeridi ── */
.depar-film-section {
  padding-bottom: 0;
}

.depar-film-phase-marquee {
  position: relative;
  margin-top: 2.5rem;
  background: #0c0c0c;
  border-top: 1px solid var(--depar-border);
  border-bottom: 1px solid var(--depar-border);
  overflow: hidden;
}

.depar-film-phase-marquee__perfs {
  height: 0.65rem;
  background-color: #141414;
  background-image: radial-gradient(circle at 50% 50%, #080808 0.22rem, transparent 0.24rem);
  background-size: 1.15rem 100%;
  background-repeat: repeat-x;
  background-position: center;
}

.depar-film-phase-marquee__perfs--top {
  border-bottom: 1px solid rgba(240, 235, 224, 0.06);
}

.depar-film-phase-marquee__perfs--bottom {
  border-top: 1px solid rgba(240, 235, 224, 0.06);
}

.depar-film-phase-marquee__inner {
  overflow: hidden;
  padding: 1.1rem 0;
  background: linear-gradient(90deg, rgba(232, 75, 26, 0.06), transparent 20%, transparent 80%, rgba(232, 75, 26, 0.06));
}

.depar-film-phase-marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: depar-film-phase-marquee 40s linear infinite;
}

.depar-film-phase-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0 1.75rem;
  font-family: var(--depar-font-mono);
  font-size: clamp(0.65rem, 1.4vw, 0.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.55);
}

.depar-film-phase-marquee__dot {
  color: var(--depar-accent);
  font-size: 0.45rem;
  opacity: 0.9;
}

@keyframes depar-film-phase-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── İçerik Takvimi ── */
.depar-cal {
  border: 1px solid var(--depar-border);
  border-radius: var(--depar-radius);
  overflow: hidden;
  background: var(--depar-card);
}

.depar-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--depar-border);
  background: rgba(17, 17, 17, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
}

.depar-cal__week {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-family: var(--depar-font-mono);
  font-size: 9px;
  color: rgba(240, 235, 224, 0.35);
  text-transform: uppercase;
}

.depar-cal-row {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--depar-border);
  align-items: start;
}

.depar-cal-row:last-child {
  border-bottom: none;
}

.depar-cal-row__day {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.depar-cal-row__abbr {
  font-family: var(--depar-font-mono);
  font-size: 10px;
  color: var(--depar-accent);
  font-weight: 600;
}

.depar-cal-row__name {
  font-size: 0.8rem;
  font-weight: 600;
}

.depar-cal-row__ig {
  font-family: var(--depar-font-mono);
  font-size: 8px;
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--depar-border);
  border-radius: 0.25rem;
  color: rgba(240, 235, 224, 0.35);
}

.depar-cal-row__cells {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.depar-cal-cell {
  flex: 1 1 140px;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--depar-border);
  border-radius: 0.5rem;
  background: rgba(8, 8, 8, 0.35);
}

.depar-cal-cell__format {
  display: block;
  font-family: var(--depar-font-mono);
  font-size: 9px;
  color: var(--depar-accent);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.depar-cal-cell__topic {
  font-size: 0.75rem;
  color: rgba(240, 235, 224, 0.55);
  line-height: 1.35;
}

/* ── Optimizasyon terminal ── */
.depar-terminal {
  border: 1px solid var(--depar-border);
  border-radius: var(--depar-radius);
  background: #0d0d0d;
  padding: 1rem 1.25rem;
  font-family: var(--depar-font-mono);
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.depar-term-line {
  display: block;
  margin-bottom: 0.75rem;
}

.depar-term-line__cmd {
  display: block;
  color: #7dd3fc;
  margin-bottom: 0.2rem;
}

.depar-term-line__out {
  display: block;
  color: rgba(240, 235, 224, 0.55);
  padding-left: 0.5rem;
}

.depar-opt-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.depar-opt-group {
  border: 1px solid var(--depar-border);
  border-radius: var(--depar-radius);
  padding: 1rem;
  background: rgba(17, 17, 17, 0.35);
}

.depar-opt-group__label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.depar-opt-group ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.75rem;
  color: rgba(240, 235, 224, 0.45);
  line-height: 1.6;
}

/* ── Prodüksiyon hattı ── */
.depar-prod-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.depar-prod-phase {
  position: relative;
  padding: 1.25rem 1rem;
  border: 1px solid var(--depar-border);
  border-radius: var(--depar-radius);
  background: rgba(17, 17, 17, 0.35);
}

.depar-prod-phase__tag {
  font-family: var(--depar-font-mono);
  font-size: 10px;
  color: var(--depar-accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.depar-prod-phase__dur {
  font-family: var(--depar-font-mono);
  font-size: 9px;
  color: rgba(240, 235, 224, 0.35);
  margin-bottom: 0.5rem;
}

.depar-prod-phase h4 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.depar-prod-phase p {
  font-size: 0.75rem;
  color: rgba(240, 235, 224, 0.45);
  margin: 0;
  line-height: 1.45;
}

.depar-prod-phase__play {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  color: rgba(240, 235, 224, 0.25);
}

.depar-prod-formats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.depar-prod-format {
  padding: 0.875rem 1rem;
  border: 1px solid var(--depar-border);
  border-radius: 0.5rem;
  background: var(--depar-card);
}

.depar-prod-format__label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.depar-prod-format__spec {
  font-family: var(--depar-font-mono);
  font-size: 9px;
  color: rgba(240, 235, 224, 0.4);
}

/* ── Service steps grid ── */
.depar-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.depar-step-card {
  padding: 1rem;
  border: 1px solid var(--depar-border);
  border-radius: var(--depar-radius);
  background: rgba(17, 17, 17, 0.35);
}

.depar-step-card h4 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.depar-step-card p {
  font-size: 0.875rem;
  color: rgba(240, 235, 224, 0.45);
  margin: 0;
  line-height: 1.45;
}

/* ── Marka: Case Studies ── */
.depar-case-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--depar-border);
}

.depar-case-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--depar-border);
  align-items: center;
}

@media (min-width: 900px) {
  .depar-case-item {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
  }

  .depar-case-item--flip {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .depar-case-item--flip .depar-case-item__main {
    order: 2;
  }

  .depar-case-item--flip .depar-case-item__media {
    order: 1;
  }
}

.depar-case-item__main {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.depar-case-item__num {
  font-family: var(--depar-font-mono);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: rgba(240, 235, 224, 0.08);
  flex-shrink: 0;
  min-width: 2.5rem;
}

.depar-case-item__sector {
  display: block;
  font-family: var(--depar-font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--depar-accent);
  margin-bottom: 0.5rem;
}

.depar-case-item__title {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0 0 1.25rem;
  line-height: 1.1;
}

.depar-case-item__details {
  margin: 0 0 1rem;
  display: grid;
  gap: 0.875rem;
}

.depar-case-item__details div {
  display: grid;
  gap: 0.25rem;
}

.depar-case-item__details dt {
  font-family: var(--depar-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.35);
}

.depar-case-item__details dd {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(240, 235, 224, 0.55);
  line-height: 1.55;
}

.depar-case-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.depar-case-item__tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--depar-border);
  border-radius: 9999px;
  color: rgba(240, 235, 224, 0.45);
}

.depar-case-item__media {
  aspect-ratio: 16 / 10;
  border-radius: var(--depar-radius);
  overflow: hidden;
  border: 1px solid var(--depar-border);
  background: var(--depar-card);
}

.depar-case-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Grafik: Print Atölyesi ── */
.depar-print-desk {
  position: relative;
  min-height: clamp(420px, 55vw, 560px);
  border-radius: var(--depar-radius);
  border: 1px solid var(--depar-border);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232, 75, 26, 0.08), transparent 45%),
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  overflow: hidden;
}

.depar-print-desk__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--depar-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.45);
}

.depar-print-desk__label em {
  font-style: normal;
  color: var(--depar-accent);
  font-size: 9px;
}

.depar-print-desk__canvas {
  position: absolute;
  inset: 0;
}

.depar-print-item {
  position: absolute;
  width: clamp(110px, 16vw, 170px);
  margin: 0;
  transition: transform 0.35s ease, filter 0.35s ease, z-index 0s;
  filter: grayscale(0.35) brightness(0.85);
  cursor: default;
}

.depar-print-item:hover {
  transform: rotate(0deg) scale(1.1) !important;
  filter: grayscale(0) brightness(1);
  z-index: 10;
}

.depar-print-item__img {
  border-radius: 0.35rem;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 224, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  background: #111;
}

.depar-print-item__img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.depar-print-item figcaption {
  padding: 0.5rem 0.15rem 0;
  text-align: center;
}

.depar-print-item__type {
  display: block;
  font-family: var(--depar-font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--depar-accent);
}

.depar-print-item__title {
  display: block;
  font-size: 0.7rem;
  color: rgba(240, 235, 224, 0.55);
  line-height: 1.3;
  margin-top: 0.15rem;
}

/* ── Süreç / Baskı Hattı ── */
.depar-process-row {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--depar-border);
  border-radius: var(--depar-radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .depar-process-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.depar-process-step {
  position: relative;
  padding: 1.25rem 1rem;
  background: rgba(17, 17, 17, 0.35);
  border-bottom: 1px solid var(--depar-border);
}

@media (min-width: 768px) {
  .depar-process-step {
    border-bottom: none;
    border-right: 1px solid var(--depar-border);
  }

  .depar-process-step:last-child {
    border-right: none;
  }
}

.depar-process-step__num {
  font-family: var(--depar-font-mono);
  font-size: 10px;
  color: var(--depar-accent);
  margin-bottom: 0.5rem;
}

.depar-process-step h4 {
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
}

.depar-process-step p {
  font-size: 0.75rem;
  color: rgba(240, 235, 224, 0.45);
  margin: 0;
  line-height: 1.45;
}

.depar-process-step__arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(240, 235, 224, 0.2);
  font-size: 0.875rem;
  display: none;
}

@media (min-width: 768px) {
  .depar-process-step__arrow {
    display: block;
  }
}

/* ── Teslim Paketi ── */
.depar-deliverables-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
  max-width: 36rem;
}

.depar-deliverables-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: rgba(240, 235, 224, 0.55);
  line-height: 1.5;
}

.depar-deliverables-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--depar-accent);
}

/* ── Placeholder ── */
.depar-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #111, #1c1c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(240, 235, 224, 0.15);
  border-radius: 0.75rem;
}

.depar-media-placeholder span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(240, 235, 224, 0.35);
}
