

body {
    background-color: #09090b;
    color: #f4f4f5;
    position: relative;
}

:root {
  --blog-ink: #ffffff;
  --blog-muted: #8b92a8;
  --blog-dim: #69708d;
  --blog-accent: #5087ff;
  --blog-accent-soft: #9ec0ff;
  --blog-hairline: rgba(255, 255, 255, 0.08);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #09090b;
}
::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 3px;
}

.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    color: transparent;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-zoom-img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.group:hover .hover-zoom-img {
    transform: scale(1.05);
}

/* Spotlight Effect */
#spotlight {
    background: radial-gradient(
        600px circle at var(--x) var(--y),
        rgba(255, 255, 255, 0.08),
        transparent 40%
    );
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
}

/* Lightbox Styles */
#lightbox {
    transition: opacity 0.3s ease;
}
#lightbox.hidden {
    opacity: 0;
    pointer-events: none;
}
#lightbox:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

/* Page Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0e1124;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}
.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.page-transition-layer {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: #373737;
    pointer-events: none;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-transition-layer.is-active {
    transform: translateY(0);
}
.page-transition-layer.is-exit {
    transform: translateY(-100%);
}
.preloader-logo img {
    max-width: min(280px, 70vw);
    height: auto;
    display: block;
}
.preloader-bar {
    width: 100%;
    height: 6px;
    background: #2a2a2a;
    position: absolute;
    overflow: hidden;
    top: 1px;
}
.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #b9c9ff 100%);
    transition: width 0.08s linear;
}

/* Billboard video cards */
.fm-video-card {
    background: transparent;
}
.fm-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
    border-radius: 20px;
    border: 1.5px solid #ffffff40;
    overflow: hidden;
    box-shadow:
        0 0 0 1px #12183a,
        inset 0 1px 0 rgba(100, 130, 255, 0.1);
}
.fm-yt-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}
.fm-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 77%) 0%, rgba(5, 10, 30, 0.25) 100%);
    transition: opacity 0.3s;
}
.fm-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 54px;
    height: 54px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition:
        transform 0.2s,
        background 0.2s;
    pointer-events: none;
}
.fm-video-container:hover .fm-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255, 255, 255, 0.26);
}
.fm-play-triangle {
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 16px solid rgb(255 255 255 / 95%);
    margin-left: 4px;
}
.fm-yt-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}
.fm-video-meta {
    padding: 20px 2px 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
}
.fm-video-title {
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 1.5vw, 42px);
    line-height: 1.05;
}
.fm-video-subtitle {
    color: #aab0c8;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 6px;
}
.fm-video-caption {
    color: #69708d;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 4px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
}
.fm-logo-area {
    position: absolute;
    top: 10px;
    left: 13px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}
.fm-logo-text {
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: clamp(18px, 2vw, 24px);
}
.fm-light-left,
.fm-light-right {
    position: absolute;
    bottom: 0;
    width: 5px;
    height: 90px;
    border-radius: 3px;
    pointer-events: none;
    z-index: 2;
    filter: blur(3px);
}
.fm-light-left {
    left: 72px;
    background: linear-gradient(to top, rgba(255, 90, 20, 0.85), transparent);
}
.fm-light-right {
    right: 90px;
    background: linear-gradient(to top, rgba(255, 70, 15, 0.7), transparent);
}
.fm-video-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 22px;
}
.brand-visual-grid .fm-video-container {
    cursor: pointer;
}
.brand-visual-grid .fm-logo-area {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.brand-visual-grid .fm-play-btn,
.brand-visual-grid .fm-yt-iframe {
    display: none !important;
}
@media (min-width: 768px) {
    .fm-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1400px) {
    .fm-video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 1279px) {
    .fm-video-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .fm-video-subtitle {
        font-size: 14px;
    }
    .fm-video-caption {
        font-size: 13px;
    }
}
.gilroy-bold {
    font-family: "Gilroy", sans-serif;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    letter-spacing: 0px;
}
.gilroy-light {
    font-family: "Gilroy";
    font-weight: 300;
    font-style: normal;
}

/* Dil SeÃ§enekleri Dropdown Stilleri */
.language-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .language-btn {
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  
  .flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: contain;
    border-radius: 2px;
  }
  
  .lang-text {
    display: block;
    position: relative;
    font-weight: 600;
    font-family: var(--title-font);
    font-size: 14px;
    color: var(--white-color);
    letter-spacing: -0.14px;
    text-transform: uppercase;
  }
  
  .language-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
  }
  
  .language-dropdown:hover .language-btn i {
    transform: rotate(180deg);
  }
  
  .language-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  
  .language-dropdown:hover .language-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .language-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .language-option:hover {
    background-color: #f5f5f5;
  }
  
  .language-option.active {
    background-color: #f0f0f0;
    font-weight: 500;
  }
  
  .language-option span {
    margin-left: 10px;
  }
  
  .lang-text span {
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    position: relative;
    padding-right: 8px;
    line-height: 16px;
  }
  
  .lang-text span:after {
    content: "";
    background: #5087ff;
    width: 2px;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
  }
  
  /* Responsive Ayarlar */
  @media (max-width: 991px) {
    .language-dropdown {
      /* margin-right: 50px; */
    }
  
    .language-btn {
      color: #000;
      padding: 8px 2px;
    }
  
    .lang-text,
    .lang-text span {
      color: #000;
    }
  
  }
  
  /* Mobile menu iÃ§in dil seÃ§eneÄŸi */
  .mobile-language-select {
    display: none;
  }
  
  @media (max-width: 991px) {
    .mobile-language-select {
      display: block;
      margin-top: 20px;
      padding: 0 15px;
    }
  
    .mobile-language-select .language-dropdown {
      width: 100%;
    }
  
    .mobile-language-select .language-btn {
      width: 100%;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.1);
      padding: 12px 15px;
    }
  
    .mobile-language-select .language-dropdown-content {
      width: 100%;
    }
  
    .header-logo img {
      width: 200px;
    }
  
    .language-dropdown-content {
      right: -52px;
    }
  }
  
  .ref-area{
    position: relative;
    background: #000;
    cursor: pointer;
    border-radius: 30px;
    border: 1.5px solid #ffffff40;
    overflow: hidden;
    box-shadow: 0 0 0 1px #12183a, inset 0 1px 0 rgba(100, 130, 255, 0.1);
  }
  .ref-area img {
    width: 80%;
    height: 100%;
    align-items: center;
    margin-left: 40px;
    object-fit: contain;
    transition: opacity 0.3s;
  }

  /* İşlerimiz — 4'lü logo grid */
  .clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }

  @media (min-width: 640px) {
    .clients-logo-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 1024px) {
    .clients-logo-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  .clients-logo-grid .clients-logo-card {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
  }

  @media (min-width: 768px) {
    .clients-logo-grid .clients-logo-card {
      height: 180px;
    }
  }

  .clients-logo-grid .clients-logo-card img {
    width: auto;
    max-width: 72%;
    max-height: 72%;
    height: auto;
    margin: 0;
    opacity: 0.75;
  }

  .clients-logo-grid .clients-logo-card:hover img {
    opacity: 1;
  }
  .py-23 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  /* Atcı TV (scoped to avoid collisions with the rest of the page) */
  .atci-tv {
    --atci-tv-bg: #f5f5e8;
    --atci-tv-card-bg: #ffffff;
    --atci-tv-text: #ffffff;
    --atci-tv-muted: #888888;
    --atci-tv-accent: #202025;
    --atci-tv-accent-hover: #333340;
    --atci-tv-play: #5087ff;
    --atci-tv-radius: 14px;
    --atci-tv-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .atci-tv__wrapper {
    /* background: var(--atci-tv-bg); */
    border-radius: 24px;
    padding: 32px 28px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  }

  @media (min-width: 720px) {
    .atci-tv__wrapper {
      padding: 40px 48px;
    }
  }

  .atci-tv__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .atci-tv__header h2 {
 
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--atci-tv-text);
    letter-spacing: -0.5px;
  }

  .atci-tv__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--atci-tv-accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
   
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, transform 0.12s;
    white-space: nowrap;
  }

  .atci-tv__all:hover {
    background: var(--atci-tv-accent-hover);
    transform: translateY(-1px);
  }

  .atci-tv__all svg {
    width: 16px;
    height: 16px;
  }

  .atci-tv__tabs {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 2px;
    margin-bottom: 20px;
    scrollbar-width: none;
  }

  .atci-tv__tabs::-webkit-scrollbar {
    display: none;
  }

  .atci-tv__tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0 0 8px 0;
   
    font-size: 0.92rem;
    color: var(--atci-tv-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
  }

  .atci-tv__tab--active,
  .atci-tv__tab[aria-selected="true"] {
    color: var(--atci-tv-text);
    border-bottom-color: var(--atci-tv-text);
    font-weight: 600;
  }

  .atci-tv__tab:hover:not(.atci-tv__tab--active) {
    color: var(--atci-tv-text);
  }

  .atci-tv__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  @media (min-width: 720px) {
    .atci-tv__grid {
      grid-template-columns: 2fr 1fr;
      grid-template-rows: auto;
    }
    .atci-tv__main {
      grid-row: 1 / 3;
    }
  }

  .atci-tv__card {
    border-radius: var(--atci-tv-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--atci-tv-shadow);
    background: #ddd;
  }

  .atci-tv__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.2s, transform 0.3s;
  }

  .atci-tv__main {
    min-height: 300px;
  }

  @media (min-width: 720px) {
    .atci-tv__main {
      min-height: 380px;
    }
    .atci-tv__side {
      min-height: 175px;
    }
  }

  @media (max-width: 719.98px) {
    .atci-tv__main {
      min-height: 240px;
    }
    .atci-tv__side {
      min-height: 180px;
    }
  }

  .atci-tv__card:hover img {
    filter: brightness(0.85);
    transform: scale(1.02);
  }

  .atci-tv__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
  }

  .atci-tv__card:hover .atci-tv__play-overlay {
    opacity: 1;
  }

  .atci-tv__play {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.2s;
  }

  .atci-tv__card:hover .atci-tv__play {
    transform: scale(1.1);
  }

  .atci-tv__play svg {
    fill: #fff;
    width: 22px;
    height: 22px;
    margin-left: 3px;
  }

  .atci-tv__side .atci-tv__play-sm-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .atci-tv__play-sm {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.2s, background 0.2s;
  }

  .atci-tv__play-sm svg {
    fill: var(--atci-tv-play);
    width: 16px;
    height: 16px;
    margin-left: 2px;
  }

  .atci-tv__card:hover .atci-tv__play-sm {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.3);
  }

  /* İşler page — filter bar */
  .works-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
  }

  .works-filter-btn {
    appearance: none;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #aab0c8;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 9999px;
    cursor: pointer;
    transition:
      background 0.18s,
      color 0.18s,
      border-color 0.18s,
      transform 0.12s;
    white-space: nowrap;
  }

  .works-filter-btn:hover {
    color: #fff;
    border-color: rgba(80, 135, 255, 0.45);
    background: rgba(80, 135, 255, 0.08);
  }

  .works-filter-btn.is-active {
    color: #fff;
    border-color: rgba(80, 135, 255, 0.65);
    background: linear-gradient(135deg, rgba(8, 19, 53, 0.95), rgba(17, 32, 88, 0.9));
    box-shadow: 0 0 0 1px rgba(80, 135, 255, 0.2);
  }

  .works-grid-wrap {
    min-height: 320px;
  }

  /* İşler listesi: her zaman 2 sütun (mobilde 1) */
  .works-page-grid {
    gap: 28px;
  }

  @media (min-width: 768px) {
    .works-page-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 1400px) {
    .works-page-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .works-empty {
    display: none;
    text-align: center;
    padding: 48px 16px;
    color: #69708d;
    font-size: 1rem;
  }

  .works-empty.is-visible {
    display: block;
  }

  .isler-card--visual .fm-play-btn,
  .isler-card--visual .fm-yt-iframe {
    display: none !important;
  }

  .isler-card--visual .fm-video-container {
    cursor: pointer;
  }

  .works-card.is-hidden {
    display: none;
  }

/* ============================================================
   ATCI PRODUCTION — Köşe Yazıları (liste + detay)
   Bu dosya style.css içindeki eski blog stillerinin yerine geçer.
   ============================================================ */

 
  
  /* ------------------------------------------------------------
     LİSTE SAYFASI
     ------------------------------------------------------------ */
  
  .blog-list-page {
    max-width: 1100px;
  }
  
  .blog-list-header {
    margin-bottom: 56px;
  }
  
  .blog-list-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blog-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  
  .blog-list-header__eyebrow::before {
    content: "";
    width: 28px;
    height: 1.5px;
    background: var(--blog-accent);
  }
  
  .blog-list-header__title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-bottom: 20px;
  }
  
  .blog-list-header__title em {
    font-style: normal;
    color: #ffffff;
    /* -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35); */
  }
  
  .blog-list-header__desc {
    color: var(--blog-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 480px;
  }
  
  /* Filtre sekmeleri — pill yerine editorial sekme */
  .blog-list-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--blog-hairline);
    margin-bottom: 8px;
  }
  
  .blog-list-chips {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .blog-list-chips::-webkit-scrollbar {
    display: none;
  }
  
  .blog-list-chip {
    appearance: none;
    background: none;
    border: none;
    flex-shrink: 0;
    position: relative;
    padding: 6px 0 16px;
    color: var(--blog-dim);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.18s;
  }
  
  .blog-list-chip sup {
    font-size: 0.62rem;
    margin-left: 4px;
    color: var(--blog-dim);
    transition: color 0.18s;
  }
  
  .blog-list-chip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -1px;
    height: 2px;
    background: var(--blog-accent);
    transition: right 0.25s ease;
  }
  
  .blog-list-chip:hover {
    color: var(--blog-ink);
  }
  
  .blog-list-chip.is-active {
    color: var(--blog-ink);
  }
  
  .blog-list-chip.is-active sup {
    color: var(--blog-accent);
  }
  
  .blog-list-chip.is-active::after {
    right: 0;
  }
  
  .blog-list-chip:focus-visible {
    outline: 2px solid var(--blog-accent);
    outline-offset: 3px;
    border-radius: 4px;
  }
  
  .blog-list-count {
    color: var(--blog-dim);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: 16px;
    white-space: nowrap;
  }
  
  /* Editorial index — büyük tipografik satırlar */
  .blog-index {
    display: flex;
    flex-direction: column;
  }
  
  .blog-row {
    border-bottom: 1px solid var(--blog-hairline);
    transition: opacity 0.3s ease;
  }
  
  /* hover'da diğer satırlar söner */
  @media (hover: hover) and (pointer: fine) {
    .blog-index:hover .blog-row {
      opacity: 0.32;
    }
    .blog-index:hover .blog-row:hover {
      opacity: 1;
    }
  }
  
  .blog-row__link {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0;
    text-decoration: none;
    color: inherit;
  }
  
  @media (min-width: 768px) {
    .blog-row__link {
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 32px;
      padding: 40px 8px;
      transition: padding-left 0.3s ease;
    }
    .blog-row__link:hover {
      padding-left: 22px;
    }
  }
  
  .blog-row__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 0;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blog-dim);
  }
  
  .blog-row__meta > * + *::before {
    content: "•";
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.18);
  }
  
  .blog-row__cat {
    color: var(--blog-accent);
  }
  
  .blog-row__title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.55rem, 3.6vw, 2.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    transition: color 0.2s;
  }
  
  .blog-row__link:hover .blog-row__title {
    color: var(--blog-accent-soft);
  }
  
  .blog-row__excerpt {
    color: var(--blog-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 640px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .blog-row__arrow {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 9999px;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    color: var(--blog-ink);
    transition:
      background 0.22s,
      border-color 0.22s,
      transform 0.22s;
  }
  
  @media (min-width: 768px) {
    .blog-row__arrow {
      display: flex;
    }
  }
  
  .blog-row__arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.22s;
  }
  
  .blog-row__link:hover .blog-row__arrow {
    background: var(--blog-accent);
    border-color: var(--blog-accent);
    transform: rotate(-45deg);
  }
  
  /* Mobil / dokunmatik: satır içinde görünür küçük görsel */
  .blog-row__thumb {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .blog-row__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  @media (hover: hover) and (pointer: fine) {
    .blog-row__thumb {
      display: none;
    }
  }
  
  /* İmleci takip eden görsel önizleme (signature) */
  .blog-hover-preview {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    width: 300px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85) rotate(-3deg);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(80, 135, 255, 0.12);
    will-change: transform;
  }
  
  .blog-hover-preview.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  
  .blog-hover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  @media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
    .blog-hover-preview {
      display: none;
    }
  }
  
  .blog-list-empty {
    display: none;
    text-align: center;
    padding: 72px 20px;
    color: var(--blog-dim);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 32px;
  }
  
  .blog-list-empty.is-visible {
    display: block;
  }
  
  /* ------------------------------------------------------------
     DETAY SAYFASI
     ------------------------------------------------------------ */
  
  /* Okuma ilerleme çubuğu */
  .blog-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 90;
    background: transparent;
    pointer-events: none;
  }
  
  .blog-progress__bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #5087ff, #9ec0ff);
    transform-origin: 0 50%;
    transform: scaleX(0);
  }
  
  .blog-detail-hero {
    margin-bottom: 40px;
  }
  
  .blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--blog-dim);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  
  .blog-breadcrumb a {
    color: var(--blog-muted);
    text-decoration: none;
    transition: color 0.15s;
  }
  
  .blog-breadcrumb a:hover {
    color: var(--blog-accent);
  }
  
  .blog-breadcrumb span[aria-hidden] {
    color: rgba(255, 255, 255, 0.18);
  }
  
  .blog-detail-tag {
    display: inline-block;
    color: var(--blog-accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid rgba(80, 135, 255, 0.35);
    border-radius: 9999px;
    background: rgba(80, 135, 255, 0.08);
    margin-bottom: 20px;
  }
  
  .blog-detail-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--blog-ink);
    margin-bottom: 24px;
    max-width: 18ch;
  }
  
  .blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 0;
    color: var(--blog-dim);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  
  .blog-detail-meta > * + *::before {
    content: "•";
    margin: 0 14px;
    color: rgba(255, 255, 255, 0.18);
  }
  
  .blog-detail-meta strong {
    color: var(--blog-muted);
    font-weight: 700;
  }
  
  .blog-detail-cover {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 56px;
    aspect-ratio: 21 / 10;
    background: #0a0a0f;
  }
  
  .blog-detail-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 9, 11, 0.45), transparent 45%);
    pointer-events: none;
  }
  
  .blog-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Prose */
  .blog-prose {
    margin: 0 auto;
    color: #c5c9d8;
    font-size: 1.08rem;
    line-height: 1.9;
  }
  
  .blog-prose > p:first-of-type {
    font-size: 1.22rem;
    line-height: 1.75;
    color: #dfe2ec;
  }
  
  .blog-prose > p:first-of-type::first-letter {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: 4.4em;
    line-height: 0.78;
    float: left;
    margin: 8px 14px 0 0;
    color: var(--blog-accent);
  }
  
  .blog-prose h2 {
    font-family: "Outfit", sans-serif;
    color: var(--blog-ink);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 2.6rem 0 1rem;
  }
  
  .blog-prose h3 {
    font-family: "Outfit", sans-serif;
    color: var(--blog-ink);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 0.8rem;
  }
  
  .blog-prose p {
    margin-bottom: 1.3rem;
  }
  
  .blog-prose a {
    color: var(--blog-accent-soft);
    text-decoration: underline;
    text-decoration-color: rgba(80, 135, 255, 0.4);
    text-underline-offset: 3px;
  }
  
  .blog-prose ul,
  .blog-prose ol {
    margin: 0 0 1.4rem 1.3rem;
    padding: 0;
  }
  
  .blog-prose li {
    margin-bottom: 0.55rem;
    padding-left: 4px;
  }
  
  .blog-prose li::marker {
    color: var(--blog-accent);
  }
  
  .blog-prose blockquote {
    margin: 2.2rem 0;
    padding: 4px 0 4px 24px;
    border-left: 3px solid var(--blog-accent);
    font-family: "Outfit", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--blog-ink);
  }
  
  .blog-prose img {
    border-radius: 18px;
    margin: 1.8rem 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  /* Makale altı: geri dön + paylaş */
  .blog-detail-footer {
    max-width: 720px;
    margin: 56px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--blog-hairline);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
  }
  
  .blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 9999px;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    color: var(--blog-ink);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition:
      border-color 0.18s,
      background 0.18s;
  }
  
  .blog-back-btn:hover {
    border-color: rgba(80, 135, 255, 0.5);
    background: rgba(80, 135, 255, 0.1);
  }
  
  .blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .blog-share__label {
    color: var(--blog-dim);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-right: 4px;
  }
  
  .blog-share__btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--blog-muted);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    transition:
      color 0.18s,
      border-color 0.18s,
      background 0.18s,
      transform 0.18s;
  }
  
  .blog-share__btn:hover {
    color: var(--blog-ink);
    border-color: rgba(80, 135, 255, 0.45);
    background: rgba(80, 135, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .blog-share__btn.is-copied {
    color: #6ee7a8;
    border-color: rgba(110, 231, 168, 0.45);
  }
  
  /* İlgili yazılar */
  .blog-related {
    margin-top: 88px;
    padding-top: 48px;
    border-top: 1px solid var(--blog-hairline);
  }
  
  .blog-related__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .blog-related__title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  
  .blog-related__all {
    color: var(--blog-dim);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
  }
  
  .blog-related__all:hover {
    color: var(--blog-accent);
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  @media (min-width: 768px) {
    .blog-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  .blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }
  
  .blog-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0f;
    border-radius: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }
  
  .blog-card:hover .blog-card__media img {
    transform: scale(1.06);
  }
  
  .blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 0;
    margin-bottom: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blog-dim);
  }
  
  .blog-card__meta > * + *::before {
    content: "•";
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.18);
  }
  
  .blog-tag {
    color: var(--blog-accent);
  }
  
  .blog-card__title {
    font-family: "Outfit", sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--blog-ink);
    transition: color 0.2s;
  }
  
  .blog-card:hover .blog-card__title {
    color: var(--blog-accent-soft);
  }
  
  .blog-not-found {
    text-align: center;
    padding: 100px 20px;
  }
  
  .blog-not-found h1 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 14px;
  }
  
  .blog-not-found p {
    color: var(--blog-dim);
    margin-bottom: 28px;
  }
  
  /* Reveal animasyonu (sayfa açılışı) */
  .blog-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: blogReveal 0.7s ease forwards;
  }
  
  .blog-reveal:nth-child(2) { animation-delay: 0.08s; }
  .blog-reveal:nth-child(3) { animation-delay: 0.16s; }
  .blog-reveal:nth-child(4) { animation-delay: 0.24s; }
  
  @keyframes blogReveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .blog-reveal {
      animation: none;
      opacity: 1;
      transform: none;
    }
    .blog-row,
    .blog-row__link,
    .blog-card__media img {
      transition: none;
    }
  }
  

  /* ============================================================
   ATCI PRODUCTION — Proje Detay Sayfası
   Accent rengi projeye göre --p-accent ile değişir.
   Font: Source Sans 3 (ekran görüntüsündeki tipografiyle eş)
   ============================================================ */

:root {
  --p-accent: #ff1e3c;
  --p-ink: #ffffff;
  --p-gray: #9aa0ad;
  --p-dim: #6f7480;
  --p-card: #18181b;
  --nav-accent: #2547ff;
  --p-font: "Source Sans 3", "Source Sans Pro", sans-serif;
}

.proje-page {
  font-family: var(--p-font);
}

/* ---------- Üst bölüm: outline arka plan yazısı + başlık ---------- */
.proje-hero {
  position: relative;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 48px;
}

.proje-bgword {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--p-font);
  font-size: clamp(84px, 15vw, 200px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.proje-title {
  position: relative;
  z-index: 1;
  font-family: var(--p-font);
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--p-ink);
  margin-bottom: 22px;
}

.proje-title .proje-title__brand {
  color: #8d929e;
}

.proje-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  color: var(--p-dim);
}

.proje-breadcrumb a {
  color: var(--p-dim);
  text-decoration: none;
  transition: color 0.15s;
}

.proje-breadcrumb a.is-light,
.proje-breadcrumb a:hover {
  color: #d6d9e0;
}

.proje-breadcrumb strong {
  color: var(--p-ink);
  font-weight: 700;
}

/* ---------- Video çerçevesi (gradyan bordür + büyük glow) ---------- */
.proje-player-wrap {
  position: relative;
  margin-bottom: 64px;
}

/* sağ üstten yayılan büyük ambient glow */
.proje-player-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -300px;
  width: 760px;
  height: 170%;
  transform: translateY(-50%);
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--p-accent) 26%, transparent),
    transparent 72%
  );
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.proje-player {
  position: relative;
  z-index: 1;
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(
    140deg,
    var(--p-accent) 0%,
    color-mix(in srgb, var(--p-accent) 70%, #000) 55%,
    color-mix(in srgb, var(--p-accent) 45%, #000) 100%
  );
  box-shadow:
    0 0 70px color-mix(in srgb, var(--p-accent) 28%, transparent),
    0 28px 90px rgba(0, 0, 0, 0.65);
}

.proje-player__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.proje-player__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .proje-player {
    padding: 4px;
    border-radius: 18px;
  }
  .proje-player__frame {
    border-radius: 14px;
  }
  .proje-player-wrap::before {
    right: -120px;
    width: 320px;
  }
}

/* ---------- Bilgi bölümü ---------- */
.proje-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 110px;
}

@media (min-width: 992px) {
  .proje-info {
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: stretch;
  }
}

.proje-desc-card {
  border: 2px solid color-mix(in srgb, var(--p-accent) 75%, transparent);
  border-radius: 22px;
  padding: 44px 48px;
  background: rgba(255, 255, 255, 0.008);
}

@media (max-width: 767px) {
  .proje-desc-card {
    padding: 28px 22px;
  }
}

.proje-desc-card__logo {
  height: 62px;
  width: auto;
  margin-bottom: 30px;
}

.proje-desc-card__title {
  font-family: var(--p-font);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--p-ink);
  margin-bottom: 14px;
}

.proje-desc-card__subtitle {
  color: #c2c6d0;
  font-size: 1.12rem;
  font-weight: 400;
  margin-bottom: 22px;
}

.proje-desc-card__text {
  color: var(--p-gray);
  font-size: 0.96rem;
  line-height: 1.78;
  max-width: 640px;
}

.proje-meta-card {
  background: var(--p-card);
  border-radius: 22px;
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 767px) {
  .proje-meta-card {
    padding: 30px 26px;
    gap: 28px;
  }
}

.proje-meta-item__label {
  font-family: var(--p-font);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--p-ink);
  margin-bottom: 6px;
}

.proje-meta-item__value {
  font-size: 16px;
  color: var(--p-gray);
}

/* ---------- Diğer Projeler ---------- */
.proje-others__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.proje-others__title {
  font-family: var(--p-font);
  line-height: 1.3;
}

.proje-others__title span {
  display: block;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 600;
  color: #8d929e;
}

.proje-others__title strong {
  display: block;
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: var(--p-ink);
}

.proje-others__nav {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  padding-top: 6px;
}

.proje-arrow {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 62px;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s,
    opacity 0.18s;
}

@media (max-width: 767px) {
  .proje-arrow {
    width: 60px;
    height: 48px;
  }
}

.proje-arrow svg {
  width: 24px;
  height: 24px;
}

.proje-arrow--prev {
  background: #1a1a1d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #9aa0ad;
}

.proje-arrow--prev:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.proje-arrow--next {
  background: transparent;
  border: 1px solid var(--nav-accent);
  color: var(--nav-accent);
}

.proje-arrow--next:hover {
  background: rgba(37, 71, 255, 0.14);
}

.proje-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.proje-arrow:focus-visible {
  outline: 2px solid var(--nav-accent);
  outline-offset: 2px;
}

.proje-dots {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
}

.proje-dot {
  appearance: none;
  border: none;
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  background: #2b2b2f;
  cursor: pointer;
  padding: 0;
  transition:
    width 0.25s,
    background 0.25s;
}

.proje-dot.is-active {
  width: 38px;
  background: var(--nav-accent);
}

/* Carousel */
.proje-track {
  display: flex;
  gap: 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
}

.proje-track::-webkit-scrollbar {
  display: none;
}

.proje-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 768px) {
  .proje-card {
    flex-basis: calc(50% - 28px);
  }
}

.proje-card__thumb {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0a0f;
  border: 2px solid var(--card-accent, var(--p-accent));
}

.proje-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.proje-card:hover .proje-card__thumb img {
  transform: scale(1.05);
}

/* Buzlu beyaz daire + accent renkli üçgen */
.proje-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-accent, var(--p-accent));
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease;
}

.proje-card:hover .proje-card__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.proje-card__play svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.proje-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
}

.proje-card__name {
  font-family: var(--p-font);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 700;
  color: var(--p-ink);
  margin-bottom: 8px;
}

.proje-card__line {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d2d5dd;
  margin-bottom: 5px;
}

.proje-card__credit {
  font-size: 0.9rem;
  color: var(--p-dim);
}

.proje-card__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 15px 28px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--p-font);
  text-decoration: none;
  color: var(--card-accent, var(--p-accent));
  background: color-mix(in srgb, var(--card-accent, var(--p-accent)) 13%, #0a0a0c);
  border: 1px solid color-mix(in srgb, var(--card-accent, var(--p-accent)) 22%, transparent);
  transition:
    background 0.18s,
    border-color 0.18s;
  white-space: nowrap;
}

.proje-card__btn:hover {
  background: color-mix(in srgb, var(--card-accent, var(--p-accent)) 26%, #0a0a0c);
  border-color: color-mix(in srgb, var(--card-accent, var(--p-accent)) 55%, transparent);
}

@media (max-width: 520px) {
  .proje-card__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Bulunamadı */
.proje-not-found {
  text-align: center;
  padding: 100px 20px;
}

.proje-not-found h1 {
  font-family: var(--p-font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.proje-not-found p {
  color: var(--p-dim);
  margin-bottom: 28px;
}

.proje-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: var(--p-ink);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 0.18s,
    background 0.18s;
}

.proje-back-btn:hover {
  border-color: rgba(37, 71, 255, 0.5);
  background: rgba(37, 71, 255, 0.1);
}

/* Açılış animasyonu */
.proje-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: projeReveal 0.7s ease forwards;
}

.proje-reveal:nth-child(2) { animation-delay: 0.08s; }
.proje-reveal:nth-child(3) { animation-delay: 0.16s; }
.proje-reveal:nth-child(4) { animation-delay: 0.24s; }

@keyframes projeReveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proje-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .proje-track {
    scroll-behavior: auto;
  }
  .proje-card__thumb img,
  .proje-card__play {
    transition: none;
  }
}


/* ============================================================
   ATCI PRODUCTION — İletişim Sayfası
   Font: Source Sans 3 (site geneliyle eş)
   ============================================================ */

   :root {
    --i-accent: #2547ff;
    --i-ink: #ffffff;
    --i-gray: #9aa0ad;
    --i-dim: #6f7480;
    --i-card: #121317;
    --i-field-line: rgba(255, 255, 255, 0.14);
    --i-error: #ff3b4e;
    --i-font: "Source Sans 3", "Source Sans Pro", sans-serif;
  }
  
  .iletisim-page {
    font-family: var(--i-font);
  }
  
  /* ---------- Başlık + outline arka plan yazısı ---------- */
  .iletisim-hero {
    position: relative;
    text-align: center;
    padding-top: 26px;
    margin-bottom: 52px;
  }
  
  .iletisim-bgword {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--i-font);
    font-size: clamp(70px, 13vw, 168px);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
  }
  
  .iletisim-title {
    position: relative;
    z-index: 1;
    font-family: var(--i-font);
    font-size: clamp(1.9rem, 4.6vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    color: #c9ccd4;
    margin-bottom: 14px;
  }
  
  .iletisim-title strong {
    color: var(--i-ink);
    font-weight: 700;
  }
  
  .iletisim-breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    font-size: 0.84rem;
    color: var(--i-dim);
  }
  
  .iletisim-breadcrumb a {
    color: var(--i-dim);
    text-decoration: none;
    transition: color 0.15s;
  }
  
  .iletisim-breadcrumb a:hover {
    color: #d6d9e0;
  }
  
  .iletisim-breadcrumb strong {
    color: #d6d9e0;
    font-weight: 700;
  }
  
  /* ---------- Layout: üst 6+6 (bilgi + form), alt 12 (harita) ---------- */
  .iletisim-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto;
  }

  .iletisim-row--top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 48px;
    align-items: stretch;
  }

  @media (min-width: 900px) {
    .iletisim-row--top {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .iletisim-row--top .iletisim-col--6 {
      grid-column: span 6;
    }
  }

  .iletisim-row--map .iletisim-col--12 {
    width: 100%;
  }

  .iletisim-row--top .iletisim-info,
  .iletisim-row--top .iletisim-form {
    height: 100%;
  }

  /* ---------- Harita (alt tam genişlik) ---------- */
  .iletisim-map {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    background: #1a1c22;
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 0;
  }

  @media (max-width: 899px) {
    .iletisim-map {
      aspect-ratio: 16 / 11;
    }
  }
  
  .iletisim-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.2) brightness(0.85);
  }
  
  /* ---------- İletişim Bilgileri kartı ---------- */
  .iletisim-info {
    border: 1.5px solid color-mix(in srgb, var(--i-accent) 60%, transparent);
    border-radius: 22px;
    padding: 34px 36px;
  }
  
  @media (max-width: 600px) {
    .iletisim-info {
      padding: 26px 22px;
    }
  }
  
  .iletisim-info__title {
    font-family: var(--i-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--i-ink);
    margin-bottom: 16px;
  }
  
  .iletisim-info__desc {
    color: var(--i-gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  
  .iletisim-info__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
  }
  
  .iletisim-info__row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  
  .iletisim-info__icon {
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    color: var(--i-gray);
    font-size: 1.05rem;
    margin-top: 2px;
  }
  
  .iletisim-info__text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #c2c6d0;
  }
  
  .iletisim-info__text span {
    display: block;
  }
  
  /* Üç renkli aksiyon pill'leri */
  .iletisim-info__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .iletisim-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 9999px;
    font-size: 0.74rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
      background 0.18s,
      border-color 0.18s;
  }
  
  .iletisim-pill--mavi {
    color: #6f8bff;
    background: rgba(37, 71, 255, 0.12);
    border-color: rgba(37, 71, 255, 0.4);
  }
  
  .iletisim-pill--mavi:hover {
    background: rgba(37, 71, 255, 0.24);
  }
  
  .iletisim-pill--kirmizi {
    color: #ff6f7d;
    background: rgba(232, 17, 45, 0.12);
    border-color: rgba(232, 17, 45, 0.4);
  }
  
  .iletisim-pill--kirmizi:hover {
    background: rgba(232, 17, 45, 0.24);
  }
  
  .iletisim-pill--sari {
    color: #d6b56a;
    background: rgba(184, 138, 47, 0.12);
    border-color: rgba(184, 138, 47, 0.4);
  }
  
  .iletisim-pill--sari:hover {
    background: rgba(184, 138, 47, 0.24);
  }
  
  /* ---------- Form ---------- */
  .iletisim-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  
  .iletisim-field {
    position: relative;
  }
  
  .iletisim-field__label {
    display: block;
    font-family: var(--i-font);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--i-ink);
    margin-bottom: 12px;
  }
  
  .iletisim-field__control {
    position: relative;
  }
  
  .iletisim-input,
  .iletisim-select,
  .iletisim-textarea {
    width: 100%;
    appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--i-field-line);
    padding: 12px 2px;
    color: var(--i-ink);
    font-family: var(--i-font);
    font-size: 1rem;
    transition: border-color 0.18s;
  }
  
  .iletisim-input::placeholder,
  .iletisim-textarea::placeholder {
    color: var(--i-dim);
  }
  
  .iletisim-input:focus,
  .iletisim-select:focus,
  .iletisim-textarea:focus {
    outline: none;
    border-bottom-color: var(--i-accent);
  }
  
  /* Dolu/aktif alanlar — görseldeki mavi tam kutu çerçeve */
  .iletisim-field.is-filled .iletisim-input,
  .iletisim-field.is-filled .iletisim-select,
  .iletisim-field.is-filled .iletisim-textarea {
    border: 1.5px solid var(--i-accent);
    border-radius: 12px;
    padding: 14px 16px;
  }
  
  /* Hatalı alan — kırmızı kutu */
  .iletisim-field.is-error .iletisim-input,
  .iletisim-field.is-error .iletisim-select,
  .iletisim-field.is-error .iletisim-textarea {
    border: 1.5px solid var(--i-error);
    border-radius: 12px;
    padding: 14px 16px;
  }
  
  .iletisim-select {
    cursor: pointer;
    color: var(--i-dim);
  }
  
  .iletisim-field.is-filled .iletisim-select {
    color: var(--i-ink);
  }
  
  .iletisim-select option {
    background: #15161a;
    color: #fff;
  }
  
  /* Select oku */
  .iletisim-field__control--select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--i-gray);
    border-bottom: 2px solid var(--i-gray);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
  }
  
  .iletisim-field.is-filled .iletisim-field__control--select::after {
    right: 16px;
  }
  
  .iletisim-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
  }
  
  .iletisim-field.is-filled .iletisim-textarea {
    min-height: 170px;
  }
  
  /* Hata mesajı + avatar rozeti */
  .iletisim-field__error {
    display: none;
    position: absolute;
    right: 2px;
    top: 44px;
    font-size: 0.78rem;
    color: var(--i-error);
  }
  
  .iletisim-field.is-error .iletisim-field__error {
    display: block;
  }
  
  .iletisim-field__avatar {
    display: none;
    position: absolute;
    right: -54px;
    top: 36px;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: var(--i-error);
    color: #fff;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  
  .iletisim-field.is-error .iletisim-field__avatar {
    display: flex;
  }
  
  @media (max-width: 1100px) {
    .iletisim-field__avatar {
      display: none !important;
    }
  }
  
  /* Gönder butonu */
  .iletisim-submit {
    appearance: none;
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 14px;
    padding: 17px;
    font-family: var(--i-font);
    font-size: 1rem;
    font-weight: 700;
    background: #ffffff;
    color: var(--i-accent);
    transition:
      background 0.2s,
      color 0.2s,
      transform 0.1s;
    margin-top: 4px;
  }
  
  .iletisim-submit:hover {
    transform: translateY(-1px);
  }
  
  /* Form geçerli olduğunda buton maviye döner (görseldeki dolu state) */
  .iletisim-form.is-valid .iletisim-submit {
    background: var(--i-accent);
    color: #fff;
  }
  
  /* Açılış animasyonu */
  .iletisim-reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: iletisimReveal 0.7s ease forwards;
  }
  
  .iletisim-reveal:nth-child(2) {
    animation-delay: 0.1s;
  }
  
  @keyframes iletisimReveal {
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .iletisim-reveal {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }

/* ============================================================
   Anasayfa — Referanslarımız carousel
   (verilen mockup ile birebir; site çakışması için scoped)
   ============================================================ */

.home-refs {
  --refs-bg: #000000;
  --refs-ink: #ffffff;
  --refs-muted: #5b6168;
  --refs-lime: #5087ff;
  --refs-lime-soft: #5087ff;
  --refs-dark-btn: #1c2128;
  --refs-card-radius: 18px;
  background: var(--refs-bg);
  color: var(--refs-ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  padding: 72px 24px 96px;
  position: relative;
  z-index: 1;
}

.home-refs__inner {
  max-width: 1480px;
  margin: 0 auto;
}

.home-refs__head {
  text-align: center;
  margin-bottom: 48px;
}

.home-refs__title {
  font-family: inherit;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--refs-ink);
  line-height: 1.15;
}

.home-refs__sub {
  color: var(--refs-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

.home-refs__carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-refs__carousel::-webkit-scrollbar {
  display: none;
}

.home-refs__card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(230px, 22vw, 300px);
  aspect-ratio: 3 / 4;
  border-radius: var(--refs-card-radius);
  overflow: hidden;
  background: #111;
  cursor: pointer;
  scroll-snap-align: start;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  font: inherit;
  text-align: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-refs__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.home-refs__card:focus-visible {
  outline: 3px solid var(--refs-lime);
  outline-offset: 3px;
}

.home-refs__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.home-refs__card:hover .home-refs__card-img {
  transform: scale(1.05);
}

.home-refs__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.home-refs__card-play {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}

.home-refs__card-play svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.home-refs__card:hover .home-refs__card-play {
  transform: scale(1.12);
  transition: transform 0.3s ease;
}

.home-refs__card-brand {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  padding: 0 12px;
  pointer-events: none;
}

.home-refs__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.home-refs__nav-btn {
  width: 54px;
  height: 48px;
  border: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  appearance: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.home-refs__nav-btn:hover {
  transform: translateY(-2px);
}

.home-refs__nav-btn:active {
  transform: translateY(0);
}

.home-refs__nav-btn--prev {
  background: var(--refs-lime-soft);
}

.home-refs__nav-btn--next {
  background: var(--refs-lime);
}

.home-refs__nav-btn svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.home-refs__nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.home-refs__cta {
  text-align: center;
  margin-top: 40px;
}

.home-refs__btn-all {
  display: inline-block;
  background: var(--refs-dark-btn);
  color: #fff;
  border: none;
  padding: 18px 56px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.home-refs__btn-all:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* YouTube popup — mockup ile aynı */
.home-refs-yt-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 120;
}

.home-refs-yt-modal.open {
  opacity: 1;
  visibility: visible;
}

.home-refs-yt-modal__box {
  position: relative;
  width: min(960px, 100%);
  transform: scale(0.94);
  transition: transform 0.3s ease;
}

.home-refs-yt-modal.open .home-refs-yt-modal__box {
  transform: scale(1);
}

.home-refs-yt-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.home-refs-yt-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.home-refs-yt-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #5087ff;
  color: #1c2128;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform 0.2s ease;
}

.home-refs-yt-modal__close:hover {
  transform: rotate(90deg);
}

@media (max-width: 560px) {
  .home-refs__nav {
    justify-content: center;
  }

  .home-refs-yt-modal__close {
    top: auto;
    bottom: -56px;
    right: 50%;
    transform: translateX(50%);
  }

  .home-refs-yt-modal__close:hover {
    transform: translateX(50%) rotate(90deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-refs__card,
  .home-refs__card-img,
  .home-refs__card-play,
  .home-refs__nav-btn,
  .home-refs__btn-all,
  .home-refs-yt-modal,
  .home-refs-yt-modal__box,
  .home-refs-yt-modal__close {
    transition: none !important;
  }
}

/* Referanslarımız — liste sayfası */
.refs-page {
  background: #000000;
  color: #0f1115;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  padding: 48px 24px 96px;
  min-height: calc(100vh - 7rem);
}

.refs-page__inner {
  max-width: 1480px;
  margin: 0 auto;
}

.refs-page__head {
  text-align: center;
  margin-bottom: 48px;
}

.refs-page__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5087ff;
  margin-bottom: 14px;
}

.refs-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #ffffff;
  line-height: 1.1;
}

.refs-page__sub {
  color: #5b6168;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

.refs-page__count {
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5b6168;
}

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

.refs-page-grid .home-refs__card {
  width: 100%;
}

@media (max-width: 1100px) {
  .refs-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .refs-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .refs-page-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Atcı TV — liste sayfası */
.atci-tv-page__tabs {
  margin-bottom: 28px;
}

.atci-tv-page__count {
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blog-muted, #8b92a8);
}

.atci-tv-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.atci-tv__list-card {
  min-height: 220px;
}

.atci-tv__list-card .atci-tv__play-sm-wrap {
  opacity: 1;
}

.atci-tv__list-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  pointer-events: none;
}

.atci-tv__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #8b92a8;
  padding: 48px 16px;
}

@media (max-width: 900px) {
  .atci-tv-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .atci-tv-page-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Site Footer (scoped — .site-ft)
   ============================================================ */

.site-ft {
  --site-ft-bg: #060709;
  --site-ft-panel: #0d0f15;
  --site-ft-panel-2: #11141c;
  --site-ft-line: rgba(255, 255, 255, 0.08);
  --site-ft-accent: #3b7bf6;
  --site-ft-accent-glow: #6aa0ff;
  --site-ft-text: #f2f4f8;
  --site-ft-muted: #868d9c;
  position: relative;
  overflow: hidden;
  padding: 88px 48px 0;
  background:
    radial-gradient(700px 380px at 85% 12%, rgba(59, 123, 246, 0.13), transparent 65%),
    var(--site-ft-bg);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--site-ft-text);
  -webkit-font-smoothing: antialiased;
}

.site-ft a {
  text-decoration: none;
  color: inherit;
}

.site-ft__inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-ft__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 72px;
}

.site-ft__eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--site-ft-accent-glow);
  margin-bottom: 18px;
}

.site-ft__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0;
}

.site-ft__title span {
  color: var(--site-ft-accent);
  display: block;
}

.site-ft__lead {
  color: var(--site-ft-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  max-width: 440px;
  margin-top: 24px;
}

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

.site-ft__channel {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--site-ft-panel);
  border: 1px solid var(--site-ft-line);
  border-radius: 15px;
  padding: 18px 22px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.site-ft__channel:hover {
  border-color: var(--site-ft-accent);
  transform: translateX(6px);
  background: var(--site-ft-panel-2);
}

.site-ft__channel-ico {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(59, 123, 246, 0.12);
  color: var(--site-ft-accent-glow);
}

.site-ft__channel-ico svg {
  width: 21px;
  height: 21px;
}

.site-ft__channel-label {
  display: block;
  font-size: 0.72rem;
  color: var(--site-ft-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.site-ft__channel-value {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.site-ft__channel-value--sm {
  font-size: 1.02rem;
}

.site-ft__channel--primary {
  background: var(--site-ft-accent);
  border-color: var(--site-ft-accent);
}

.site-ft__channel--primary .site-ft__channel-ico {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.site-ft__channel--primary .site-ft__channel-label {
  color: rgba(255, 255, 255, 0.78);
}

.site-ft__channel--primary:hover {
  background: #2f6ce0;
  border-color: #2f6ce0;
}

.site-ft__map {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--site-ft-line);
}

.site-ft__brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.site-ft__brand b {
  color: var(--site-ft-accent);
}

.site-ft__brand-desc {
  color: var(--site-ft-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}

.site-ft__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.site-ft__socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--site-ft-line);
  color: var(--site-ft-muted);
  transition: 0.25s;
}

.site-ft__socials a:hover {
  border-color: var(--site-ft-accent);
  color: var(--site-ft-accent-glow);
  background: var(--site-ft-panel);
}

.site-ft__socials svg {
  width: 18px;
  height: 18px;
}

.site-ft__col-h {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--site-ft-text);
  margin-bottom: 18px;
}

.site-ft__col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-ft__col-list a {
  color: var(--site-ft-muted);
  font-size: 0.95rem;
  transition: color 0.22s, padding-left 0.22s;
}

.site-ft__col-list a:hover {
  color: var(--site-ft-accent-glow);
  padding-left: 5px;
}

.site-ft__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--site-ft-line);
  padding: 24px 0 30px;
}

.site-ft__bar p {
  color: var(--site-ft-muted);
  font-size: 0.88rem;
  margin: 0;
}

.site-ft__bar nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-ft__bar nav a {
  color: var(--site-ft-muted);
  font-size: 0.88rem;
  transition: color 0.22s;
}

.site-ft__bar nav a:hover {
  color: var(--site-ft-accent-glow);
}

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

  .site-ft__map {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-ft {
    padding: 60px 22px 0;
  }

  .site-ft__map {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-ft__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-ft__channel,
  .site-ft__col-list a,
  .site-ft__socials a {
    transition: none;
  }
}

/* ============================================================
   İletişim formu popup (scoped — .call-modal)
   ============================================================ */

.call-modal {
  --call-accent: #5087ff;
  --call-accent-deep: #5087ff;
  --call-highlight: #f0562a;
  --call-dark: #1c1f24;
  --call-field: #f2f3f5;
  --call-ink: #14161a;
  --call-muted: #6b7280;
  --call-radius: 26px;
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.call-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.call-modal__card {
  position: relative;
  width: min(760px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  color: var(--call-ink);
  border-radius: var(--call-radius);
  padding: 48px clamp(24px, 5vw, 56px);
  box-shadow:
  0 0 60px rgb(80 135 255 / 44%), 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.call-modal.is-open .call-modal__card {
  transform: translateY(0) scale(1);
}

.call-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--call-field);
  color: #444;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.call-modal__close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

.call-modal__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--call-ink);
}

.call-modal__desc {
  text-align: center;
  color: var(--call-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 32px;
}

.call-modal__desc b {
  color: var(--call-highlight);
  font-weight: 700;
}

.call-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.call-modal__field {
  width: 100%;
  background: var(--call-field);
  border: 1.5px solid transparent;
  border-radius: 13px;
  padding: 16px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--call-ink);
  transition: border-color 0.2s, background 0.2s;
}

.call-modal__field::placeholder {
  color: #9aa0aa;
}

.call-modal__field:focus {
  outline: none;
  border-color: var(--call-accent-deep);
  background: #fff;
}

.call-modal__field.is-invalid {
  border-color: #e5484d;
  background: #fff5f5;
}

.call-modal__field--area {
  resize: vertical;
  min-height: 108px;
  grid-column: 1 / 2;
}

.call-modal__phone {
  display: flex;
  gap: 10px;
}

.call-modal__cc {
  position: relative;
  flex: 0 0 auto;
}

.call-modal__cc-btn {
  height: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--call-field);
  border: 1.5px solid transparent;
  border-radius: 13px;
  padding: 0 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.call-modal__cc-btn:focus-visible {
  outline: none;
  border-color: var(--call-accent-deep);
  background: #fff;
}

.call-modal__cc-flag {
  font-size: 1.25rem;
  line-height: 1;
}

.call-modal__cc-chev {
  width: 14px;
  height: 14px;
  color: #9aa0aa;
  transition: transform 0.2s;
}

.call-modal__cc.is-open .call-modal__cc-chev {
  transform: rotate(180deg);
}

.call-modal__cc-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 5;
  width: 230px;
  max-height: 230px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  padding: 6px;
  display: none;
}

.call-modal__cc.is-open .call-modal__cc-list {
  display: block;
}

.call-modal__cc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: none;
  border-radius: 9px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  text-align: left;
  color: var(--call-ink);
}

.call-modal__cc-item:hover {
  background: var(--call-field);
}

.call-modal__cc-item-dial {
  margin-left: auto;
  color: var(--call-muted);
}

.call-modal__phone .call-modal__field {
  flex: 1;
}

.call-modal__submit-row {
  display: flex;
  align-items: stretch;
}

.call-modal__send {
  width: 100%;
  background: var(--call-dark);
  color: #fff;
  border: 2px dashed var(--call-accent);
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  padding: 18px;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.call-modal__send:hover {
  background: #000;
  box-shadow: 0 0 24px rgba(196, 240, 60, 0.4);
  transform: translateY(-2px);
}

.call-modal__send:disabled {
  opacity: 0.6;
  cursor: wait;
}

.call-modal__success {
  text-align: center;
  padding: 20px 0;
  display: none;
}

.call-modal__success.is-show {
  display: block;
}

.call-modal__success-ico {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--call-accent);
  display: grid;
  place-items: center;
}

.call-modal__success-ico svg {
  width: 38px;
  height: 38px;
  color: var(--call-dark);
}

.call-modal__success h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--call-ink);
}

.call-modal__success p {
  color: var(--call-muted);
  font-size: 1.05rem;
  margin: 0;
}

@media (max-width: 600px) {
  .call-modal__grid {
    grid-template-columns: 1fr;
  }

  .call-modal__field--area {
    grid-column: auto;
  }

  .call-modal__card {
    padding: 40px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-modal,
  .call-modal__card,
  .call-modal__cc-chev,
  .call-modal__send,
  .call-modal__close {
    transition: none;
  }
}