/* ============================================
   KEYGENT AI — Subpage Styles
   Page Hero & Shared Components
   ============================================ */

/* === Page Hero Section === */
.page-hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 50%, #F8FAFC 100%);
  padding-top: 72px;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

/* === Left Column === */
.page-hero-left {
  transition: transform 0.4s ease-out;
  will-change: transform;
}

.page-hero-badge,
.page-hero-title,
.page-hero-desc,
.page-hero-buttons,
.digital-hero-metrics,
.page-hero-img-main,
.page-hero-img-small,
.page-hero-stat {
  opacity: 0;
}

.page-hero-badge {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.page-hero-title {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-top: 24px;
}

.page-hero-title span {
  color: var(--primary);
}

.page-hero-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 20px;
}

.page-hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-page-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-page-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.btn-page-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-page-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* === Stat Card (Floating) === */
.page-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
  padding: 16px 24px;
  margin-top: 40px;
}

.page-hero-stat-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.page-hero-stat-content {
  display: flex;
  flex-direction: column;
}

.page-hero-stat-number {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--dark);
  line-height: 1;
}

.page-hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* === Right Column — Images === */
.page-hero-right {
  transition: transform 0.4s ease-out;
  will-change: transform;
}

.page-hero-images {
  position: relative;
  padding: 20px;
}

.page-hero-img-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-img-small {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 55%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.page-hero-img-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  top: -40px;
  left: -40px;
  z-index: -1;
}

/* ============================================
   DETAIL SECTION — Kartlar Grid
   ============================================ */

.detail-section {
  padding: 120px 0;
  background: var(--bg-white);
}

/* Header: başlık + dots */
.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.detail-header-text {
  max-width: 600px;
}

.detail-header-text .section-title {
  text-align: left;
  margin-bottom: 12px;
}

.detail-header-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.detail-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 12px;
  flex-shrink: 0;
}

.detail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.detail-dot.active {
  background: var(--primary);
}

/* Card Grid */
.detail-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-row {
  display: flex;
  gap: 24px;
}

/* Card Base */
.detail-card {
  background: #fff;
  border: 1px solid var(--border-light, #E5E7EB);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
  border-radius: 0 0 4px 4px;
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.10);
  border-color: rgba(37, 99, 235, 0.3);
}

.detail-card:hover::before {
  width: 60%;
}

/* Top row — active/passive toggle */
.detail-top-row {
  align-items: stretch;
}

.detail-top-col {
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 992px) {
  .detail-top-row .detail-top-col:has(.detail-card-top.active) {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
    width: 66.666667% !important;
  }

  .detail-top-row .detail-top-col:not(:has(.detail-card-top.active)) {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
    width: 33.333333% !important;
  }
}

.detail-card-top {
  height: 320px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.detail-card-top.active {
  border-left-color: var(--primary);
}

.detail-card-top.active .detail-card-visual-col {
  display: block;
}

.detail-card-top:not(.active) .detail-card-visual-col {
  display: none;
}

.detail-card-top:not(.active) .detail-card-bullets {
  display: none;
}

.detail-card-top:not(.active) .detail-card-desc {
  display: none;
}

.detail-card-top.active .detail-card-tagline {
  display: none;
}

.detail-card-top:not(.active) .detail-card-link {
  display: none;
}

.detail-card-top:not(.active) {
  cursor: pointer;
  opacity: 0.8;
}

.detail-card-top:not(.active):hover {
  opacity: 1;
  border-left-color: rgba(37, 99, 235, 0.3);
}

/* Detail section — bottom row brand cards (centered) */
.detail-section .brand-card {
  text-align: center;
}

.detail-section .brand-card .detail-card-icon {
  display: block;
  margin: 0 auto 16px;
}

.detail-section .brand-card h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

/* Card icon */
.detail-card-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Card title */
.detail-card h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.detail-card-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Card description */
.detail-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Bullets */
.detail-card-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.detail-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-secondary);
}

.detail-bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Card link */
.detail-card-link {
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 16px;
  display: inline-block;
  transition: all 0.3s ease;
}

.detail-card-link:hover {
  color: var(--primary-hover);
  transform: translateX(4px);
}

/* Card with visual (top-left card) */
.detail-card-visual {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 12px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Floating card styles removed — replaced by uniform bottom cards */

/* ============================================
   DIJITAL ICERIKLER — Listing & Detail
   ============================================ */

.digital-hero-section {
  min-height: 78vh;
}

.digital-hero-section .page-hero-title {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
}

.digital-hero-metrics {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 30px;
}

.digital-hero-metric {
  display: flex;
  flex-direction: column;
  min-width: 80px;
}

.digital-hero-metric-number {
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.digital-hero-metric-label {
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  margin-top: 6px;
  white-space: nowrap;
}

.digital-hero-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex: 0 0 1px;
}

.digital-hero-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  padding: 7px 16px 7px 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.digital-hero-youtube:hover {
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--primary);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.14);
  transform: translateY(-2px);
}

.digital-hero-youtube-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: #FF0000;
  color: #fff;
  flex: 0 0 36px;
}

.digital-hero-youtube-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.digital-channel-card.page-hero-img-main {
  aspect-ratio: auto;
  min-height: 330px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--border);
  background: #fff;
}

.digital-channel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--border);
}

.digital-channel-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border), 0 12px 30px rgba(15, 23, 42, 0.08);
  flex: 0 0 76px;
}

.digital-channel-info {
  flex: 1;
  min-width: 0;
}

.digital-channel-card h2 {
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 8px;
}

.digital-channel-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.digital-channel-meta span:last-child {
  white-space: nowrap;
}

.digital-channel-youtube-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 15px;
  border-radius: 5px;
  background: #FF0000;
  color: #fff;
  flex: 0 0 22px;
}

.digital-channel-youtube-mark svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  stroke-width: 3;
}

.digital-channel-card p {
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.digital-channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.digital-channel-tags span {
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.digital-content-section {
  padding: 96px 0 120px;
  background: var(--bg-white);
}

.digital-toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
  padding: 14px;
  margin-bottom: 46px;
  position: sticky;
  top: 88px;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.digital-filters {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.digital-filters::-webkit-scrollbar {
  display: none;
}

.digital-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  border-radius: 50px;
  padding: 9px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.digital-chip:hover {
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--primary);
}

.digital-chip.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.digital-chip span {
  color: var(--text-muted);
  font-size: 11px;
}

.digital-chip.active span {
  color: rgba(255, 255, 255, 0.65);
}

.digital-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 240px;
  margin-bottom: 0;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 15px;
  transition: all 0.25s ease;
}

.digital-search:focus-within {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.digital-search svg {
  width: 17px;
  height: 17px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.digital-search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.digital-grid-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.digital-grid-head .section-title {
  margin-bottom: 0;
}

.digital-grid-head p {
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}

.digital-grid-head strong {
  color: var(--dark);
}

.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
}

.digital-video-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.digital-video-card:hover {
  color: inherit;
  transform: translateY(-6px);
}

.digital-video-card[hidden] {
  display: none;
}

.digital-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-light);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.digital-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 0.58) 100%);
  pointer-events: none;
}

.digital-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.digital-video-card:hover .digital-video-thumb img {
  transform: scale(1.04);
}

.digital-video-category {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 50px;
  padding: 5px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.digital-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  transition: all 0.3s ease;
}

.digital-video-play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.digital-video-card:hover .digital-video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.digital-video-info {
  padding: 18px 2px 0;
}

.digital-video-info h3 {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.digital-video-card:hover .digital-video-info h3 {
  color: var(--primary);
}

.digital-video-info p {
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.digital-video-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.digital-video-info span svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.digital-video-card:hover .digital-video-info span svg {
  transform: translateX(4px);
}

.digital-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 72px 20px 0;
}

.digital-empty svg {
  width: 42px;
  height: 42px;
  color: var(--primary);
  margin-bottom: 16px;
}

.digital-empty h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.digital-subscribe-section {
  padding: 72px 0;
  background: var(--dark);
  overflow: hidden;
}

.digital-subscribe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.digital-subscribe-inner::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  right: 12%;
  top: -150px;
  pointer-events: none;
}

.digital-subscribe-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.digital-subscribe-inner p {
  color: rgba(255, 255, 255, 0.62);
  font-family: 'Inter', sans-serif;
  max-width: 560px;
  margin-bottom: 0;
}

.digital-breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 92px 0 14px;
}

.digital-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  min-width: 0;
}

.digital-breadcrumb-inner a {
  color: var(--text-secondary);
  text-decoration: none;
}

.digital-breadcrumb-inner a:hover {
  color: var(--primary);
}

.digital-breadcrumb-inner svg {
  width: 13px;
  height: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.digital-breadcrumb-inner span {
  color: var(--dark);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.digital-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  white-space: nowrap;
  font-weight: 500;
}

.video-detail-section {
  padding: 42px 0 96px;
  background: #fff;
}

.video-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.video-detail-main {
  min-width: 0;
}

.video-detail-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50px;
  padding: 7px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.video-detail-category span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.video-detail-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  margin: 16px 0 18px;
}

.video-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 24px;
}

.video-detail-meta a {
  color: var(--primary);
  font-weight: 600;
}

.video-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 600;
}

.video-author img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.video-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: var(--dark);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.18);
}

.video-player iframe,
.video-player-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-player iframe {
  border: 0;
}

.video-player-poster {
  z-index: 2;
  cursor: pointer;
  background: var(--dark);
  transition: opacity 0.35s ease;
}

.video-player-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-player-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.video-player-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.46) 100%);
}

.video-player-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 50px;
  padding: 7px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.video-player-badge svg {
  width: 14px;
  height: 14px;
}

.video-player-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.28);
  transition: transform 0.25s ease;
}

.video-player-play svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}

.video-player-poster:hover .video-player-play,
.video-player-poster:focus .video-player-play {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.video-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-share-wrap {
  position: relative;
}

.video-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: #fff;
  color: var(--text);
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.video-action svg {
  width: 15px;
  height: 15px;
}

.video-action:hover {
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.35);
}

.video-action.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.video-action.primary:hover {
  background: var(--primary-hover);
  color: #fff;
}

.video-share-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  display: grid;
  gap: 6px;
  min-width: 210px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.video-share-menu[hidden] {
  display: none;
}

.video-share-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  transition: all 0.2s ease;
}

.video-share-option:hover,
.video-share-option:focus {
  background: var(--primary-light);
  color: var(--primary);
}

.video-share-option svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.video-share-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 18px;
}

.video-share-brand-x {
  background: var(--dark);
}

.video-share-brand-linkedin {
  background: var(--primary);
}

.video-copy-state {
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  white-space: nowrap;
}

.video-detail-block {
  border-top: 1px solid var(--border);
  margin-top: 38px;
  padding-top: 34px;
}

.video-detail-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  margin-bottom: 16px;
}

.video-detail-block h2 span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 10px;
  flex-shrink: 0;
}

.video-detail-block h2 svg {
  width: 17px;
  height: 17px;
}

.video-detail-copy p {
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.video-detail-copy p:last-child {
  margin-bottom: 0;
}

.video-lead {
  color: var(--text-secondary) !important;
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  font-size: 17px !important;
  font-weight: 300;
}

.video-chapters {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.video-chapter {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.video-chapter:last-child {
  border-bottom: none;
}

.video-chapter:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.video-chapter-time {
  flex-shrink: 0;
  color: var(--primary);
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 8px;
  padding: 5px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  min-width: 58px;
  text-align: center;
}

.video-chapter-title {
  flex: 1;
  min-width: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.video-chapter svg {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.video-chapter:hover svg {
  color: var(--primary);
  transform: translate(2px, -2px);
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-tag {
  color: var(--text-secondary);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.video-tag:hover {
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.35);
}

.video-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.video-side-card,
.video-cta-card {
  border-radius: 18px;
  padding: 22px;
}

.video-side-card {
  background: #fff;
  border: 1px solid var(--border);
}

.video-channel-side {
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 130%);
  border-color: rgba(37, 99, 235, 0.18);
}

.video-channel-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.video-channel-row img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--border);
}

.video-channel-row h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.video-channel-row p,
.video-channel-desc {
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  margin-bottom: 0;
}

.video-channel-desc {
  line-height: 1.65;
  border-top: 1px dashed rgba(37, 99, 235, 0.22);
  margin-top: 16px;
  padding-top: 16px;
}

.video-channel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  color: #fff;
  background: var(--primary);
  border-radius: 50px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-top: 18px;
}

.video-channel-btn:hover {
  color: #fff;
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.video-channel-btn svg {
  width: 16px;
  height: 16px;
}

.video-side-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.video-side-title h2 {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.video-side-title a {
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.video-related-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-related-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: inherit;
  border-radius: 12px;
  padding: 9px;
  margin: -9px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.video-related-item:hover {
  background: var(--bg-light);
  color: inherit;
}

.video-related-thumb {
  width: 126px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-light);
  flex-shrink: 0;
}

.video-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-related-body {
  min-width: 0;
}

.video-related-body strong {
  display: -webkit-box;
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.video-related-item:hover strong {
  color: var(--primary);
}

.video-related-body small {
  display: block;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 6px;
}

.video-cta-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.video-cta-card::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -52px;
  top: -62px;
}

.video-cta-card h2 {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
}

.video-cta-card p {
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
}

.video-cta-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--primary);
  border-radius: 50px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.video-cta-card a:hover {
  color: #fff;
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.video-cta-card svg {
  width: 14px;
  height: 14px;
}

.digital-not-found {
  padding: 150px 0 100px;
  background: #fff;
}

.digital-not-found-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.digital-not-found-inner > svg {
  width: 58px;
  height: 58px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 22px;
}

.digital-not-found-inner h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.digital-not-found-inner p {
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
}

/* === Responsive === */

/* Tablet */
@media (max-width: 991px) {
  .page-hero-right {
    margin-top: 48px;
  }

  .page-hero-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .digital-hero-metrics {
    justify-content: center;
  }

  .detail-section {
    padding: 80px 0;
  }

  .detail-row {
    flex-direction: column;
    gap: 16px;
  }

  .detail-card-top,
  .detail-card-bottom {
    min-height: auto;
  }

  .detail-card-top {
    height: auto;
    overflow: visible;
  }

  .detail-top-row .detail-top-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .detail-card-top:not(.active) .detail-card-visual-col {
    display: none;
  }

  .detail-card-top:not(.active) .detail-card-bullets {
    display: none;
  }

  .digital-toolbar {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .digital-search {
    min-width: 0;
  }

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

  .digital-subscribe-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-detail-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .video-sidebar {
    position: static;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .detail-section {
    padding: 64px 0;
  }

  .detail-header {
    flex-direction: column;
    gap: 16px;
  }

  .detail-dots {
    display: none;
  }

  .detail-grid {
    gap: 16px;
  }

  .detail-card {
    padding: 28px;
  }

  .detail-card-visual {
    height: 120px;
    margin-top: 16px;
  }

  .page-hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .page-hero-left {
    text-align: center;
  }

  .page-hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-page-primary,
  .btn-page-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .page-hero-stat {
    margin-left: auto;
    margin-right: auto;
  }

  .digital-hero-metrics {
    gap: 12px;
    flex-wrap: wrap;
  }

  .digital-hero-metric {
    align-items: center;
    min-width: 86px;
  }

  .digital-hero-metric-number {
    font-size: 30px;
  }

  .digital-hero-metric-label {
    font-size: 12px;
  }

  .digital-hero-divider {
    display: none;
  }

  .digital-hero-youtube {
    width: auto;
    max-width: 260px;
    margin-top: 6px;
    font-size: 14px;
  }

  .page-hero-left,
  .page-hero-right {
    transform: none !important;
    will-change: auto;
  }

  .page-hero-img-deco {
    display: none;
  }

  .digital-channel-card.page-hero-img-main {
    min-height: auto;
    padding: 24px;
    text-align: left;
  }

  .digital-channel-head {
    align-items: flex-start;
    gap: 12px;
  }

  .digital-channel-avatar {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .digital-channel-card h2 {
    font-size: 23px;
  }

  .digital-channel-meta {
    font-size: 12px;
  }

  .digital-channel-card p {
    font-size: 15px;
  }

  .digital-content-section {
    padding: 72px 0;
  }

  .digital-grid-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .digital-breadcrumb {
    padding-top: 86px;
  }

  .digital-breadcrumb-inner {
    flex-wrap: wrap;
  }

  .digital-breadcrumb-inner span {
    flex: 1 1 100%;
    order: 2;
  }

  .digital-back-link {
    margin-left: 0;
  }

  .video-detail-section {
    padding: 34px 0 72px;
  }

  .video-detail-title {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .video-meta-dot {
    display: none;
  }

  .video-player {
    border-radius: 16px;
  }

  .video-player-play {
    width: 66px;
    height: 66px;
  }

  .video-action-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .video-share-wrap,
  .video-share-wrap .video-action {
    width: 100%;
  }

  .video-share-menu {
    left: 0;
    right: 0;
    min-width: 0;
  }

  .video-copy-state {
    white-space: normal;
  }

  .video-chapter {
    align-items: flex-start;
    gap: 12px;
    padding: 13px 14px;
  }

  .video-related-thumb {
    width: 118px;
  }
}

/* ============================================
   GALERİ — Eğitimlerden Kareler
   ============================================ */

.galeri-section {
  padding: 120px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.galeri-header {
  text-align: center;
  margin-bottom: 60px;
}

.galeri-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.galeri-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.galeri-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
}

.gallery-track--top {
  animation: scrollLeft 90s linear infinite;
}

.gallery-track--bottom {
  animation: scrollRight 100s linear infinite;
}

.gallery-wrapper:hover .gallery-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.gallery-item--s  { width: 180px; height: 140px; }
.gallery-item--m  { width: 240px; height: 160px; }
.gallery-item--l  { width: 320px; height: 180px; }
.gallery-item--xs { width: 160px; height: 200px; }

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

.gallery-item-overlay {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-overlay::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cpolyline points='9 21 3 21 3 15'/%3E%3Cline x1='21' x2='14' y1='3' y2='10'/%3E%3Cline x1='3' x2='10' y1='21' y2='14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ============================================
   LIGHTBOX — Galeri Popup
   ============================================ */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.gallery-lightbox.active .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Gallery Responsive — Tablet */
@media (max-width: 1024px) {
  .galeri-section {
    padding: 80px 0;
  }

  .gallery-wrapper {
    gap: 12px;
  }

  .gallery-item--s  { width: 150px; height: 120px; }
  .gallery-item--m  { width: 200px; height: 135px; }
  .gallery-item--l  { width: 260px; height: 150px; }
  .gallery-item--xs { width: 135px; height: 170px; }
}

/* Gallery Responsive — Mobile */
@media (max-width: 768px) {
  .galeri-section {
    padding: 64px 0;
  }

  .galeri-header {
    margin-bottom: 40px;
  }

  .gallery-wrapper {
    gap: 10px;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  }

  .gallery-item--s  { width: 120px; height: 95px; }
  .gallery-item--m  { width: 160px; height: 110px; }
  .gallery-item--l  { width: 200px; height: 125px; }
  .gallery-item--xs { width: 105px; height: 135px; }

  .gallery-track { gap: 10px; }

  .gallery-track--top { animation-duration: 60s; }
  .gallery-track--bottom { animation-duration: 70s; }

  .lightbox-prev,
  .lightbox-next {
    width: 32px;
    height: 32px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/* ============================================================
   WEB PROJELERİMİZ — Dark Carousel Section
   ============================================================ */
.projects-section{position:relative;background:linear-gradient(180deg,#0A1230 0%,#0F1A3D 60%,#0A1230 100%);color:#fff;padding:72px 0 80px;overflow:hidden}

/* Decorative */
.proj-deco{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.proj-deco .blob{position:absolute;width:520px;height:520px;border-radius:50%;filter:blur(40px)}
.proj-deco .blob.b1{top:-180px;right:-120px;background:radial-gradient(circle,rgba(59,111,245,.22) 0%,transparent 65%)}
.proj-deco .blob.b2{bottom:-220px;left:-120px;background:radial-gradient(circle,rgba(59,111,245,.16) 0%,transparent 70%)}
.proj-deco .ring{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.06)}
.proj-deco .ring.r1{width:680px;height:680px;top:-220px;right:-220px}
.proj-deco .ring.r2{width:380px;height:380px;bottom:-100px;left:8%;border-color:rgba(59,111,245,.14)}
.proj-deco .grid-bg{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:64px 64px;mask-image:radial-gradient(ellipse 80% 60% at 50% 50%,#000 30%,transparent 80%);-webkit-mask-image:radial-gradient(ellipse 80% 60% at 50% 50%,#000 30%,transparent 80%)}

/* Container */
.proj-container{max-width:1280px;margin:0 auto;padding:0 56px;position:relative;z-index:1}

/* Header */
.proj-head{display:grid;grid-template-columns:1fr auto;gap:48px;align-items:end;margin-bottom:36px}
.proj-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:#7A93D9;font-weight:600;margin-bottom:18px}
.proj-eyebrow .bar{width:32px;height:1.5px;background:#3B6FF5}
.proj-title{font-family:'Lato',sans-serif;font-weight:700;font-size:clamp(2rem,3.6vw,3rem);letter-spacing:-0.02em;color:#fff;line-height:1.1;max-width:740px}
.proj-title .accent{color:#7AA2FF}
.proj-sub{font-size:16px;color:rgba(255,255,255,.55);font-weight:300;margin-top:18px;max-width:540px;line-height:1.7}

.proj-head-actions{display:flex;align-items:center;gap:24px;padding-bottom:6px}
.proj-counter{display:flex;align-items:baseline;gap:6px;font-family:'Lato',sans-serif}
.proj-counter .cur{font-size:32px;font-weight:900;color:#fff;letter-spacing:-0.02em;line-height:1}
.proj-counter .sep{color:rgba(255,255,255,.35);font-size:18px;font-weight:700}
.proj-counter .tot{font-size:18px;font-weight:700;color:rgba(255,255,255,.55)}
.proj-nav{display:flex;gap:10px}
.proj-nav button{width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);color:#fff;display:flex;align-items:center;justify-content:center;transition:all .25s ease;cursor:pointer}
.proj-nav button:hover{background:#3B6FF5;border-color:#3B6FF5;transform:translateY(-2px);box-shadow:0 10px 24px rgba(59,111,245,.4)}
.proj-nav button:disabled{opacity:.35;cursor:not-allowed;transform:none;background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.12);box-shadow:none}
.proj-nav button svg{width:18px;height:18px}

/* Viewport / Track */
.proj-viewport{position:relative;overflow:hidden}
.proj-track{display:flex;gap:28px;transition:transform .65s cubic-bezier(0.16,1,0.3,1);will-change:transform}
.proj-slide{flex:0 0 calc((100% - 28px * 2) / 3);min-width:0}

/* Card */
.proj-card{position:relative;border-radius:20px;overflow:hidden;background:#141B2D;border:1px solid rgba(255,255,255,.08);transition:transform .4s ease,border-color .4s ease,box-shadow .4s ease;display:flex;flex-direction:column;height:100%}
.proj-card:hover{transform:translateY(-6px);border-color:rgba(122,162,255,.4);box-shadow:0 30px 60px rgba(0,0,0,.4)}
.proj-card.featured{border:1px solid rgba(122,162,255,.45);box-shadow:0 30px 60px rgba(0,0,0,.45),0 0 0 1px rgba(122,162,255,.15) inset}

.proj-card-media{position:relative;aspect-ratio:16/10;overflow:hidden;background:linear-gradient(135deg,#1A2B5C 0%,#0F1A3D 100%)}
.proj-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(0.16,1,0.3,1)}
.proj-card:hover .proj-card-media img{transform:scale(1.05)}
.proj-card-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(10,18,48,.7) 100%);pointer-events:none}

.proj-card-tag{position:absolute;top:16px;left:16px;background:rgba(15,26,61,.7);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.12);color:#fff;border-radius:50px;padding:6px 14px;font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;display:inline-flex;align-items:center;gap:6px;z-index:1}
.proj-card-tag .dot{width:6px;height:6px;border-radius:50%;background:#7AA2FF}
.proj-card-year{position:absolute;top:16px;right:16px;color:rgba(255,255,255,.7);font-size:12px;font-weight:600;font-family:'Lato',sans-serif;letter-spacing:.04em;z-index:1}

.proj-card-body{padding:28px;display:flex;flex-direction:column;gap:14px;flex:1}
.proj-card-cat{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:#7AA2FF;font-weight:600}
.proj-card h3{font-family:'Lato',sans-serif;font-weight:700;font-size:22px;color:#fff;line-height:1.25;letter-spacing:-0.01em;margin:0}
.proj-card p{font-size:14px;color:rgba(255,255,255,.55);line-height:1.65;margin:0}
.proj-card-tech{display:flex;flex-wrap:wrap;gap:6px;margin-top:auto;align-items:center}
.proj-card-tech span{font-size:11px;font-weight:500;color:rgba(255,255,255,.6);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:50px;padding:5px 11px}
.proj-card-duration{margin-left:auto!important;background:none!important;border:none!important;padding:0!important;font-size:12px!important;color:rgba(255,255,255,.5)!important;font-weight:500!important}

.proj-card-foot{display:flex;align-items:center;justify-content:space-between;padding-top:18px;border-top:1px solid rgba(255,255,255,.08);margin-top:6px}
.proj-card-link{display:inline-flex;align-items:center;gap:8px;color:#7AA2FF;font-size:13px;font-weight:600;transition:gap .25s ease;text-decoration:none}
.proj-card-link:hover{gap:12px;color:#fff}
.proj-card-link svg{width:14px;height:14px}
.proj-card-meta{display:flex;align-items:center;gap:14px;font-size:11px;color:rgba(255,255,255,.45)}
.proj-card-meta .item{display:inline-flex;align-items:center;gap:5px}
.proj-card-meta svg{width:12px;height:12px}

/* Controls: progress + dots + CTA */
.proj-controls{display:flex;align-items:center;gap:24px;margin-top:32px;justify-content:space-between}
.proj-track-bar{flex:1;height:2px;background:rgba(255,255,255,.08);border-radius:50px;overflow:hidden;position:relative;max-width:520px}
.proj-track-bar .fill{position:absolute;top:0;left:0;height:100%;background:linear-gradient(90deg,#3B6FF5 0%,#7AA2FF 100%);border-radius:50px;transition:width .65s cubic-bezier(0.16,1,0.3,1)}
.proj-dots{display:flex;gap:8px}
.proj-dots button{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.18);transition:all .3s ease;padding:0;border:none;cursor:pointer}
.proj-dots button.active{background:#fff;width:24px;border-radius:50px}
.proj-dots button:hover{background:rgba(255,255,255,.45)}
.proj-view-all{display:inline-flex;align-items:center;gap:8px;color:#fff;font-size:14px;font-weight:600;padding:12px 24px;border:1px solid rgba(255,255,255,.18);border-radius:50px;transition:all .3s ease;white-space:nowrap;text-decoration:none;cursor:pointer;background:none}
.proj-view-all:hover{background:#fff;color:#0F1A3D;border-color:#fff}
.proj-view-all svg{width:14px;height:14px}

/* Metrics row */
.proj-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:40px;border-top:1px solid rgba(255,255,255,.08);padding-top:28px}
.proj-metric{padding:0 32px;border-right:1px solid rgba(255,255,255,.08)}
.proj-metric:first-child{padding-left:0}
.proj-metric:last-child{border-right:none}
.proj-metric .n{font-family:'Lato',sans-serif;font-weight:900;font-size:36px;color:#fff;letter-spacing:-0.02em;line-height:1}
.proj-metric .n .acc{color:#7AA2FF}
.proj-metric .l{font-size:13px;color:rgba(255,255,255,.5);margin-top:8px;font-weight:400}

/* ---- RESPONSIVE ---- */
@media (max-width:1100px){
  .proj-slide{flex:0 0 calc((100% - 28px) / 2)}
}

@media (max-width:768px){
  .projects-section{padding:64px 0 80px}
  .proj-container{padding:0 20px}

  .proj-head{grid-template-columns:1fr;gap:20px}
  .proj-head-actions{justify-content:space-between}
  .proj-title{font-size:26px}
  .proj-sub{font-size:13px;margin-top:10px}
  .proj-counter .cur{font-size:20px}
  .proj-counter .tot{font-size:14px}
  .proj-counter .sep{font-size:14px}
  .proj-nav button{width:40px;height:40px}

  .proj-viewport{overflow:visible}
  .proj-slide{flex:0 0 86%;min-width:0}
  .proj-track{gap:14px}

  .proj-card h3{font-size:17px}
  .proj-card p{font-size:12px}
  .proj-card-body{padding:18px;gap:8px}
  .proj-card-tag{padding:5px 11px;font-size:9px}
  .proj-card-tech span{font-size:10px;padding:3px 9px}

  .proj-controls{flex-wrap:wrap;gap:16px}
  .proj-track-bar{display:none}
  .proj-view-all{width:100%;justify-content:center;order:3}

  .proj-metrics{grid-template-columns:repeat(2,1fr);gap:24px}
  .proj-metric{padding:0;border-right:none}
  .proj-metric .n{font-size:28px}
}
