/* HİZMETLER SAYFASI */

.services-page{
  background: var(--white-soft);
  color: var(--text-dark);
}

/* HERO */
.services-hero{
  position: relative;
  overflow: hidden;
  margin-top: var(--header-h);
  background: #0b0b0c;
}

.services-hero-video-only{
  min-height: clamp(420px, 72vh, 860px);
}

.services-hero-media{
  position: relative;
  width: 100%;
  min-height: clamp(420px, 72vh, 860px);
  background: #0b0b0c;
}

.services-hero-video{
  display: block;
  width: 100%;
  height: clamp(420px, 72vh, 860px);
  object-fit: cover;
  object-position: center center;
  background: #0b0b0c;
}

.services-hero-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,8,9,.12) 0%, rgba(8,8,9,.06) 20%, rgba(8,8,9,.16) 72%, rgba(8,8,9,.32) 100%),
    linear-gradient(90deg, rgba(8,8,9,.08) 0%, rgba(8,8,9,.02) 28%, rgba(8,8,9,.00) 50%, rgba(8,8,9,.10) 100%);
}

.services-sound-toggle{
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(10,10,10,.44);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.services-sound-toggle:hover{
  transform: translateY(-1px);
  background: rgba(10,10,10,.58);
  border-color: rgba(255,255,255,.24);
}

.services-sound-toggle:focus{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(255,255,255,.14),
    0 14px 34px rgba(0,0,0,.18);
}

.services-sound-toggle-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.services-sound-toggle-text{
  line-height: 1;
  white-space: nowrap;
}

/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  text-decoration: none;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn-primary{
  background: #111;
  color: #fff;
  box-shadow: 0 14px 30px rgba(17,17,17,.14);
}

.btn-primary:hover{
  background: #000;
}

.btn-secondary{
  background: #fff;
  color: #111;
  border: 1px solid rgba(17,17,17,.10);
}

.btn-secondary:hover{
  background: #f7f7f8;
}

.btn-ghost{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.08);
}

.btn-ghost-dark{
  color: #111;
  border-color: rgba(17,17,17,.14);
}

.btn-ghost-dark:hover{
  background: rgba(17,17,17,.04);
}

/* OVERVIEW */
.services-overview{
  margin-top: -22px;
  padding-bottom: 34px;
  position: relative;
  z-index: 4;
}

.services-overview-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.services-overview-card{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
}

.services-overview-card strong{
  display: block;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--text-dark);
}

.services-overview-card span{
  display: block;
  margin-top: 10px;
  color: var(--text-dark-soft);
  font-size: 15px;
  line-height: 1.68;
}

/* SECTION */
.services-main{
  padding: 96px 0;
}

.services-main-light{
  background: var(--white-soft);
  color: var(--text-dark);
}

.services-main-dark{
  background: #0a0a0a;
  color: #f5f5f7;
}

.section-label{
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dark-faint);
}

.services-section-head{
  max-width: 980px;
  margin-bottom: 30px;
}

.services-section-head-dark .section-label{
  color: rgba(245,245,247,.62);
}

.services-section-head h2,
.services-cta-card h2{
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 760;
}

.services-section-head p:last-child,
.services-cta-card p:not(.section-label){
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.76;
  color: var(--text-dark-soft);
}

.services-section-head-dark h2{
  color: #fff;
}

.services-section-head-dark p:last-child{
  color: rgba(245,245,247,.80);
}

/* BRAND CARDS */
.services-cards-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.service-brand-card{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 22px 50px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-brand-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 28px 58px rgba(0,0,0,.16);
}

.service-brand-card::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.service-brand-card::after{
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  opacity: .18;
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.service-brand-card > *{
  position: relative;
  z-index: 1;
}

.service-brand-top{
  margin-bottom: 14px;
}

.service-brand-kicker{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-brand-card h3{
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 760;
}

.service-brand-text{
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
}

.service-brand-list{
  margin: 18px 0 0;
  padding: 0 0 0 18px;
}

.service-brand-list li{
  margin: 0 0 10px;
  line-height: 1.65;
}

/* Görsel sıra: WINBUYSELL -> DAŞ YAPI -> FAFUER */
.services-cards-grid .service-brand-card:nth-child(1){ order: 2; }
.services-cards-grid .service-brand-card:nth-child(2){ order: 1; }
.services-cards-grid .service-brand-card:nth-child(3){ order: 3; }

/* 1. kart = DAŞ YAPI */
.services-cards-grid .service-brand-card:nth-child(1){
  background:
    linear-gradient(145deg, #ffd84d 0%, #f3c100 38%, #b98b00 100%);
  border: 1px solid rgba(17,17,17,.10);
  color: #111;
}

.services-cards-grid .service-brand-card:nth-child(1)::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 28%, rgba(0,0,0,.08) 100%),
    radial-gradient(circle at top right, rgba(255,255,255,.30) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(120deg, rgba(17,17,17,.06) 0%, rgba(17,17,17,0) 44%);
}

.services-cards-grid .service-brand-card:nth-child(1)::after{
  background: rgba(17,17,17,.22);
}

.services-cards-grid .service-brand-card:nth-child(1) .service-brand-kicker{
  color: rgba(17,17,17,.72);
}

.services-cards-grid .service-brand-card:nth-child(1) h3,
.services-cards-grid .service-brand-card:nth-child(1) .service-brand-text,
.services-cards-grid .service-brand-card:nth-child(1) .service-brand-list{
  color: #111;
}

.services-cards-grid .service-brand-card:nth-child(1) .service-brand-list li::marker{
  color: rgba(17,17,17,.90);
}

/* 2. kart = WINBUYSELL */
.services-cards-grid .service-brand-card:nth-child(2){
  background:
    linear-gradient(145deg, #0d4e41 0%, #0a6956 42%, #0b2f28 100%);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
}

.services-cards-grid .service-brand-card:nth-child(2)::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 24%, rgba(0,0,0,.16) 100%),
    radial-gradient(circle at top right, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(120deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 42%);
}

.services-cards-grid .service-brand-card:nth-child(2)::after{
  background: rgba(255,255,255,.18);
}

.services-cards-grid .service-brand-card:nth-child(2) .service-brand-kicker{
  color: rgba(255,255,255,.72);
}

.services-cards-grid .service-brand-card:nth-child(2) h3,
.services-cards-grid .service-brand-card:nth-child(2) .service-brand-text,
.services-cards-grid .service-brand-card:nth-child(2) .service-brand-list{
  color: #fff;
}

.services-cards-grid .service-brand-card:nth-child(2) .service-brand-list li::marker{
  color: rgba(255,255,255,.92);
}

/* 3. kart = FAFUER */
.services-cards-grid .service-brand-card:nth-child(3){
  background:
    linear-gradient(145deg, #21142e 0%, #34204a 34%, #14342a 72%, #0d221b 100%);
  border: 1px solid rgba(255,255,255,.08);
  color: #f5f5f7;
}

.services-cards-grid .service-brand-card:nth-child(3)::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 22%, rgba(0,0,0,.18) 100%),
    radial-gradient(circle at top right, rgba(163,103,255,.26) 0%, rgba(163,103,255,0) 32%),
    radial-gradient(circle at bottom left, rgba(34,197,94,.16) 0%, rgba(34,197,94,0) 34%);
}

.services-cards-grid .service-brand-card:nth-child(3)::after{
  background: rgba(129,82,255,.22);
}

.services-cards-grid .service-brand-card:nth-child(3) .service-brand-kicker{
  color: rgba(233,228,255,.74);
}

.services-cards-grid .service-brand-card:nth-child(3) h3,
.services-cards-grid .service-brand-card:nth-child(3) .service-brand-text,
.services-cards-grid .service-brand-card:nth-child(3) .service-brand-list{
  color: #f5f5f7;
}

.services-cards-grid .service-brand-card:nth-child(3) .service-brand-list li::marker{
  color: rgba(233,228,255,.92);
}

/* VALUE GRID */
.services-value-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.services-value-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 24px;
}

.services-value-card h3{
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 760;
}

.services-value-card p{
  margin: 14px 0 0;
  color: rgba(245,245,247,.80);
  font-size: 16px;
  line-height: 1.72;
}

/* CTA */
.services-cta-wrap{
  display: block;
}

.services-cta-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
  text-align: center;
}

.services-cta-card h2{
  max-width: 14ch;
  margin-inline: auto;
}

.services-cta-card p:not(.section-label){
  max-width: 760px;
  margin-inline: auto;
}

.services-cta-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .services-cards-grid{
    grid-template-columns: 1fr;
  }

  .services-value-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px){
  .services-overview-grid{
    grid-template-columns: 1fr;
  }

  .services-main{
    padding: 78px 0;
  }

  .services-hero-video-only,
  .services-hero-media,
  .services-hero-video{
    min-height: 420px;
    height: 62vh;
  }

  /* mobil/tablette de aynı sıra kalsın */
  .services-cards-grid .service-brand-card:nth-child(1){ order: 2; }
  .services-cards-grid .service-brand-card:nth-child(2){ order: 1; }
  .services-cards-grid .service-brand-card:nth-child(3){ order: 3; }
}

@media (max-width: 640px){
  .section-label,
  .service-brand-kicker{
    font-size: 11px;
    letter-spacing: .16em;
  }

  .services-overview-card span,
  .services-section-head p:last-child,
  .service-brand-text,
  .service-brand-list li,
  .services-value-card p,
  .services-cta-card p:not(.section-label){
    font-size: 16px;
    line-height: 1.68;
  }

  .services-section-head h2,
  .services-cta-card h2{
    font-size: clamp(30px, 8vw, 42px);
  }

  .service-brand-card h3{
    font-size: 24px;
  }

  .services-cta-actions{
    flex-direction: column;
  }

  .services-cta-actions .btn{
    width: 100%;
  }

  .services-overview-card,
  .service-brand-card,
  .services-value-card,
  .services-cta-card{
    border-radius: 24px;
    padding: 22px;
  }

  .services-sound-toggle{
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 13px;
  }

  .services-hero-video-only,
  .services-hero-media,
  .services-hero-video{
    min-height: 360px;
    height: 54vh;
  }
}