/* ============================================================================
   SECTIONS — Stats · Services · Portfolio · Process · Partners · Team ·
              Contact · Footer — Folkart-inspired dark adaptation.
   ============================================================================ */

/* ── Custom variables for sections ──────────────────────────────────────────── */
:root {
  --sec-a:   #09090d;
  --sec-b:   #0d0e13;
  --sec-c:   #070709;
  --card-bg: rgba(255,255,255,0.03);
  --card-bd: rgba(255,255,255,0.07);
  --card-hv: rgba(255,184,0,0.22);
  --divider: rgba(255,255,255,0.07);
  --sec-pad: 8rem;
}

/* ── Content wrapper sits above fixed stage ──────────────────────────────── */
#content {
  position: relative;
  z-index: 2;
  /* Clip horizontal overflow from edge-to-edge swipers (portfolio / reel) so the
     page can never pan sideways on mobile. `clip` (not `hidden`) avoids creating
     a scroll container, so vertical scrolling and reveal observers keep working. */
  overflow-x: clip;
}

/* ── Custom cursor ────────────────────────────────────────────────────────── */
#cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width .3s var(--ease), height .3s var(--ease),
              border-color .3s var(--ease), background .3s var(--ease),
              opacity .5s var(--ease);
  mix-blend-mode: difference;
}
#cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s;
}
body.cur-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--accent); background: rgba(255,184,0,0.07); }
body.cur-down  #cursor-ring { width: 28px; height: 28px; background: rgba(255,184,0,0.18); }
@media (hover: none) { #cursor-ring, #cursor-dot { display: none; } }

/* ── Scroll-reveal shared utility ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px);  }
[data-reveal="left"].is-revealed, [data-reveal="right"].is-revealed { transform: translateX(0); }
[data-reveal][data-delay="80"]   { transition-delay: .08s; }
[data-reveal][data-delay="100"]  { transition-delay: .10s; }
[data-reveal][data-delay="160"]  { transition-delay: .16s; }
[data-reveal][data-delay="200"]  { transition-delay: .20s; }
[data-reveal][data-delay="220"]  { transition-delay: .22s; }
[data-reveal][data-delay="280"]  { transition-delay: .28s; }
[data-reveal][data-delay="300"]  { transition-delay: .30s; }
[data-reveal][data-delay="340"]  { transition-delay: .34s; }
[data-reveal][data-delay="400"]  { transition-delay: .40s; }
[data-reveal][data-delay="500"]  { transition-delay: .50s; }

/* ── Split-text char animation ────────────────────────────────────────────── */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(55px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: calc(var(--ci) * 22ms);
}
[data-split-wrap].text-animate .char { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .char { transition: none; } }

/* ── Shared section structure ─────────────────────────────────────────────── */
.section-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: var(--sec-pad) var(--gutter);
}
.section-head { margin-bottom: 4rem; }
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--accent);
  margin-right: 0.7rem;
  vertical-align: middle;
  position: relative; top: -1px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--white);
}
.section-intro {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-top: 1.2rem;
}

/* ============================================================================
   STATS
   ============================================================================ */
#stats {
  background: rgba(9,9,13,0.85);
  border-bottom: 1px solid var(--divider);
}
.stats-inner {
  max-width: 1380px; margin: 0 auto;
  padding: 5.5rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--divider);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stat-num sup {
  font-size: 0.45em;
  color: var(--accent);
  font-weight: 700;
  vertical-align: super;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================================
   SERVICES
   ============================================================================ */
#services { background: rgba(13,14,19,0.82); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.svc-card {
  position: relative; overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.svc-card:hover { border-color: var(--card-hv); background: rgba(255,184,0,0.03); }

.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,184,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.svc-card:hover::before { opacity: 1; }

.svc-num {
  font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em;
  color: rgba(255,184,0,0.18);
  line-height: 1; margin-bottom: 2rem;
  transition: color .4s var(--ease);
}
.svc-card:hover .svc-num { color: rgba(255,184,0,0.5); }

.svc-icon {
  width: 48px; height: 48px; margin-bottom: 1.5rem;
  color: var(--silver);
  transition: color .4s var(--ease), transform .4s var(--ease);
}
.svc-card:hover .svc-icon { color: var(--accent); transform: scale(1.08); }

.svc-title {
  font-size: 1.45rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 1rem; color: var(--white);
}
.svc-desc {
  font-size: 0.92rem; font-weight: 300; line-height: 1.68;
  color: var(--muted); flex: 1;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,184,0,0.3);
  padding-bottom: 0.25rem;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.svc-link:hover { gap: 0.8rem; border-color: var(--accent); }
.svc-link svg { transition: transform .3s var(--ease); }
.svc-link:hover svg { transform: translateX(3px); }

/* ============================================================================
   PROJECTS / PORTFOLIO
   ============================================================================ */
#projects { background: rgba(9,9,13,0.88); }

.pf-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.pf-filter {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  align-self: flex-end; padding-bottom: 0.2rem;
}
.pf-filter__btn {
  appearance: none; background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-family: var(--font); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.02em; color: var(--muted);
  cursor: pointer; transition: all .3s var(--ease);
}
.pf-filter__btn:hover    { border-color: rgba(255,184,0,0.4); color: var(--white); }
.pf-filter__btn.is-active{ background: var(--accent); border-color: var(--accent); color: #14130c; }

/* Swiper */
.portfolio-swiper { width: 100%; overflow: visible !important; }
.portfolio-swiper .swiper-wrapper { align-items: stretch; }

/* Project card */
.project-card {
  position: relative; overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--card-bd);
  transition: border-color .4s var(--ease), box-shadow .5s var(--ease);
  transform-origin: center;
}
.project-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 28px 60px -22px rgba(0,0,0,0.8),
              0 0 30px -10px rgba(255,184,0,0.25);
}

.project-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.project-card:hover .project-card__img {
  transform: scale(1.06);
}

/* Gradient overlay — deepens and warms toward the accent on hover */
.project-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,0.9) 100%),
    linear-gradient(180deg, rgba(255,184,0,0) 55%, rgba(255,184,0,0.12) 100%);
  opacity: 0.92;
  transition: opacity .5s var(--ease);
}
.project-card:hover::after { opacity: 1; }

/* Shine effect (JS-driven) */
.project-card__shine {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  transition: background .15s ease;
}

/* Card content */
.project-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.6rem;
  z-index: 3;
}
.project-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.55rem;
}
.project-card__type {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  padding: 0.32em 0.7em;
  border-radius: 999px;
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.28);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.project-card__year {
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
}
.project-card__title {
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.2; color: #fff;
}
.project-card__loc {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-top: 0.4rem; font-weight: 400;
}
.project-card__arrow {
  position: absolute; top: 1.4rem; right: 1.4rem; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease);
}
.project-card:hover .project-card__arrow { opacity: 1; transform: scale(1); background: var(--accent); border-color: var(--accent); }

/* Swiper nav arrows */
.p-nav {
  display: flex; gap: 0.8rem; margin-top: 2rem;
  justify-content: flex-end; padding-right: 0;
}
.p-nav__prev, .p-nav__next {
  appearance: none; background: var(--card-bg);
  border: 1px solid var(--card-bd); border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--white); font-size: 1.1rem;
  transition: all .3s var(--ease);
}
.p-nav__prev:hover, .p-nav__next:hover {
  background: var(--accent); border-color: var(--accent); color: #14130c;
}
.p-nav__prev:disabled, .p-nav__next:disabled { opacity: 0.35; pointer-events: none; }

/* ============================================================================
   PROCESS TIMELINE
   ============================================================================ */
#process { background: rgba(13,14,19,0.85); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  border: 1px solid var(--divider);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--divider);
  position: relative;
  transition: background .4s var(--ease);
}
.process-step:last-child { border-right: 0; }
.process-step:hover { background: rgba(255,184,0,0.025); }

.step-num {
  font-size: 2.8rem; font-weight: 800; letter-spacing: -0.05em;
  line-height: 1; color: var(--accent);
  display: block; margin-bottom: 1.5rem;
  opacity: 0.22;
  transition: opacity .4s var(--ease);
}
.process-step:hover .step-num { opacity: 0.65; }
.step-title {
  font-size: 1rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 0.7rem;
  color: var(--white);
}
.step-desc {
  font-size: 0.82rem; font-weight: 300; line-height: 1.65;
  color: var(--muted);
}
.step-dot {
  /* top: -1px was clipped by process-grid overflow:hidden — moved inside */
  position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255,184,0,0.5);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.process-step:hover .step-dot { opacity: 1; }

/* ============================================================================
   PARTNERS MARQUEE
   ============================================================================ */
#partners {
  background: rgba(9,9,13,0.80);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  overflow: hidden;
  padding: 2.2rem 0;
}
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  animation: marqueeRoll 28s linear infinite;
  will-change: transform;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  padding: 0 3rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border-right: 1px solid var(--divider);
}
.marquee__item:last-child { border-right: 0; }
.marquee__sep {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent);
  opacity: 0.5; flex: none;
}
@keyframes marqueeRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================================
   TEAM
   ============================================================================ */
#team { background: var(--sec-b); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.team-card {
  position: relative; overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  padding: 2.5rem 2rem 2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1.3rem;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.team-card:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); }

.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em;
  color: #fff;
  position: relative; isolation: isolate;
  flex: none;
  transition: transform .4s var(--ease), box-shadow .45s var(--ease);
}
.team-card:hover .team-avatar {
  transform: scale(1.06);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.22),
              0 14px 34px -10px rgba(255,184,0,0.45);
}

/* Optional real photo — covers the initials when assets/team-*.jpg exists.
   If the file is missing the <img> removes itself (onerror) and initials show. */
.team-avatar__img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover;
}
.team-avatar__initials { position: relative; z-index: 1; }

/* Static rim */
.team-avatar::after {
  content: '';
  position: absolute; inset: -3px; z-index: 2;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color .4s var(--ease);
}
.team-card:hover .team-avatar::after { border-color: rgba(255,184,0,0.4); }

/* Rotating conic glow halo, revealed on hover (behind the avatar) */
.team-avatar::before {
  content: '';
  position: absolute; inset: -7px; z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    var(--accent), #3d78c4, #1a7a6a, #9e3254, var(--accent));
  filter: blur(9px);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.team-card:hover .team-avatar::before {
  opacity: 0.5;
  animation: av-spin 6s linear infinite;
}

@keyframes av-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .team-card:hover .team-avatar::before { animation: none; }
}

.team-avatar--bd { background: linear-gradient(135deg, #c8860a, #ffb800); }
.team-avatar--sk { background: linear-gradient(135deg, #1e3a5f, #3d78c4); }
.team-avatar--my { background: linear-gradient(135deg, #0d3b35, #1a7a6a); }
.team-avatar--ad { background: linear-gradient(135deg, #4a1528, #9e3254); }

.team-name {
  font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--white);
}
.team-role {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
}
.team-bio {
  font-size: 0.82rem; font-weight: 300; line-height: 1.65;
  color: var(--muted);
}
.team-links {
  display: flex; gap: 0.7rem; margin-top: 0.4rem;
}
.team-link {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  font-size: 0.72rem; font-weight: 600;
  transition: all .3s var(--ease);
}
.team-link:hover { background: var(--accent); border-color: var(--accent); color: #14130c; }

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */
#testimonials { background: rgba(7,7,9,0.90); }

.testimonials-swiper { overflow: visible !important; padding-bottom: 0.5rem !important; }
.testimonials-swiper .swiper-wrapper { align-items: stretch; }

.testimonials-nav {
  display: flex; gap: 0.8rem; justify-content: flex-end; margin-top: 2rem;
}

/* Testimonial card */
.tcard {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: 16px; padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  height: 100%;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
              transform 0.4s var(--ease);
}
.tcard:hover {
  border-color: rgba(255,184,0,0.2);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7),
              0 0 0 1px rgba(255,184,0,0.08);
  transform: translateY(-3px);
}

.tcard__stars {
  color: var(--accent);
  font-size: 0.88rem; letter-spacing: 0.12em;
}

.tcard__quote {
  font-size: 0.92rem; font-weight: 300; line-height: 1.75;
  color: var(--muted); flex: 1; position: relative;
}
.tcard__quote::before {
  content: '"';
  display: block; font-size: 3.5rem; line-height: 0.75;
  font-weight: 800; color: rgba(255,184,0,0.13);
  margin-bottom: 0.4rem;
}

.tcard__author { display: flex; align-items: center; gap: 0.9rem; }
.tcard__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  flex: none; letter-spacing: 0.02em;
}
.tcard__avatar--ay { background: linear-gradient(135deg, #c8860a, #ffb800); }
.tcard__avatar--fk { background: linear-gradient(135deg, #1e3a5f, #3d78c4); }
.tcard__avatar--md { background: linear-gradient(135deg, #0d3b35, #1a7a6a); }
.tcard__avatar--za { background: linear-gradient(135deg, #4a1528, #9e3254); }
.tcard__avatar--co { background: linear-gradient(135deg, #2a1a4a, #6b3fa0); }

.tcard__name {
  display: block; font-size: 0.88rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.1rem;
}
.tcard__role {
  display: block; font-size: 0.7rem; color: var(--faint);
  letter-spacing: 0.04em;
}

@media (max-width: 680px) {
  .tcard { padding: 1.4rem 1.3rem; }
  .tcard__quote { font-size: 0.88rem; }
}

/* ============================================================================
   CONTACT
   ============================================================================ */
#contact {
  background: rgba(9,9,13,0.82);
  border-bottom: 1px solid var(--divider);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact-info .section-title { font-size: clamp(1.9rem, 3.5vw, 3.2rem); margin-top: 1rem; margin-bottom: 2rem; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-details li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.92rem; color: var(--muted); line-height: 1.5;
}
.contact-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,184,0,0.1); border: 1px solid rgba(255,184,0,0.2);
  display: flex; align-items: center; justify-content: center;
  flex: none; color: var(--accent); font-size: 1rem;
}
.contact-label { font-weight: 600; color: var(--white); display: block; font-size: 0.8rem; }

/* Form */
.contact-form {
  border-radius: 16px;
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font); font-size: 0.9rem; color: var(--white);
  outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(255,184,0,0.5); background: rgba(255,255,255,0.06);
}
.form-select option { background: #1a1b22; color: #fff; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.78rem; color: var(--muted); line-height: 1.5;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px; border-radius: 4px; flex: none; margin-top: 1px;
  accent-color: var(--accent);
}
.form-check a { color: var(--accent); }
.form-submit {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}
.form-submit.is-loading .form-submit__text,
.form-submit.is-loading i { opacity: 0; }
.form-submit__spinner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.form-submit.is-loading .form-submit__spinner {
  opacity: 1;
}
.form-submit__spinner::after {
  content: ''; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: #15130c;
  border-radius: 50%;
  animation: sp 0.6s linear infinite;
}
@keyframes sp { to { transform: rotate(360deg); } }

.form-error {
  font-size: 0.72rem; color: #ff6b6b;
  display: none; margin-top: 0.2rem;
}
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: rgba(255,107,107,0.5);
}
.form-input.is-invalid ~ .form-error,
.form-select.is-invalid ~ .form-error,
.form-textarea.is-invalid ~ .form-error,
.form-check .form-error { display: block; }

/* Contact detail items */
.contact-details__item {
  transition: transform 0.3s var(--ease);
}
.contact-details__item:hover {
  transform: translateX(4px);
}
.contact-value {
  display: block; color: var(--muted);
  font-size: 0.92rem; line-height: 1.5;
}
.contact-link {
  color: inherit; text-decoration: none;
  transition: color 0.3s var(--ease);
  position: relative;
}
.contact-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.contact-link:hover { color: var(--white); }
.contact-link:hover::after { transform: scaleX(1); }

/* Map */
.contact-map-wrap {
  margin-top: 4rem;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--sec-c);
}
.contact-map {
  width: 100%; height: 260px;
  filter: grayscale(0.85) invert(0.92) hue-rotate(180deg) saturate(0.6);
  transition: filter 0.5s var(--ease);
}
.contact-map-wrap:hover .contact-map {
  filter: grayscale(0.4) invert(0) hue-rotate(0deg) saturate(1);
}
.contact-map iframe {
  display: block;
}
.contact-map__overlay {
  position: absolute; right: 1.2rem; top: 1.2rem;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem; color: var(--silver); pointer-events: none;
}
.contact-map__overlay i { color: var(--accent); }

/* Map placeholder */
.contact-map--placeholder {
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,184,0,0.06) 0%, transparent 70%),
              linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  filter: none !important;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.map-pin-center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  text-align: center;
}
.map-pin-center span { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.map-pin-sub { font-size: 0.75rem !important; font-weight: 400 !important; color: var(--muted) !important; }

/* Form field focus glow */
.form-input:focus, .form-select:focus, .form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(255,184,0,0.08), 0 0 20px rgba(255,184,0,0.04);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
#site-footer { background: var(--sec-c); border-top: 1px solid var(--divider); }

.footer-main {
  max-width: 1380px; margin: 0 auto;
  padding: 5rem var(--gutter) 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-mark {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.4rem; text-decoration: none;
}
.footer-tagline {
  font-size: 0.88rem; font-weight: 300; line-height: 1.7;
  color: var(--muted); max-width: 280px; margin-bottom: 1.8rem;
}
.footer-social { display: flex; gap: 0.7rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 0.72rem; font-weight: 700;
  transition: all .3s var(--ease);
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #14130c; }

.footer-col-title {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.4rem;
}
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links-list a {
  font-size: 0.9rem; font-weight: 300; color: var(--muted);
  text-decoration: none; transition: color .3s var(--ease);
}
.footer-links-list a:hover { color: var(--white); }

.footer-bar {
  max-width: 1380px; margin: 0 auto;
  padding: 1.6rem var(--gutter);
  border-top: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bar p { font-size: 0.78rem; color: var(--faint); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--faint); text-decoration: none; transition: color .3s; }
.footer-legal a:hover { color: var(--white); }
.footer-back-top {
  appearance: none; background: none; border: none;
  cursor: pointer; color: var(--muted); font-size: 0.78rem;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color .3s var(--ease);
}
.footer-back-top:hover { color: var(--accent); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1100px) {
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-main   { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-grid  { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3) { border-right: 0; }
  .process-step:nth-child(4) { border-top: 1px solid var(--divider); }
  .process-step:nth-child(5) { border-top: 1px solid var(--divider); border-right: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .svc-card:nth-child(2) { border-right: 0; }
  .svc-card:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--divider); }
}

@media (max-width: 900px) {
  :root { --sec-pad: 5.5rem; }
  .stats-inner          { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2){ border-right: 0; }
  .stat-item:nth-child(3){ border-top: 1px solid var(--divider); }
  .stat-item:nth-child(4){ border-top: 1px solid var(--divider); }
  .services-grid         { grid-template-columns: 1fr; gap: 2px; }
  .svc-card:nth-child(2) { border-right: 1px solid var(--card-bd); }
  .svc-card:nth-child(3) { grid-column: auto; border-top: 1px solid var(--divider); }
  .contact-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info .section-title { font-size: clamp(1.7rem, 5vw, 2.6rem); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-card--wide { grid-column: span 2; }
  .showcase-card { aspect-ratio: 4/3; }
}

@media (max-width: 680px) {
  :root { --sec-pad: 3.5rem; }

  /* Stats */
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    padding: 3rem var(--gutter);
    gap: 0;
  }
  .stat-item { padding: 2rem 1.5rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--divider); }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--divider); }
  .stat-item:last-child { border-right: 0; }
  .stat-num { font-size: clamp(2.4rem, 9vw, 3.5rem); }

  /* Sections */
  .section-head { margin-bottom: 2.5rem; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .section-title { font-size: clamp(1.8rem, 7.5vw, 2.8rem); }
  .section-intro { font-size: 0.95rem; }
  .section-inner { padding: var(--sec-pad) 5vw; }

  /* Services */
  .services-grid { gap: 2px; }
  .svc-card { padding: 2.2rem 1.8rem; }
  .svc-num { font-size: 2.8rem; margin-bottom: 1.4rem; }
  .svc-icon { width: 40px; height: 40px; margin-bottom: 1.2rem; }

  /* Portfolio filter */
  .pf-head { flex-direction: column; gap: 1rem; }
  .pf-filter { gap: 0.4rem; }
  .pf-filter__btn { padding: 0.4rem 0.9rem; font-size: 0.74rem; }

  /* Process — vertical timeline */
  .process-grid { grid-template-columns: 1fr; border-radius: 10px; }
  .process-step {
    border-right: 0 !important;
    border-top: 1px solid var(--divider) !important;
    padding: 1.8rem 1.5rem;
    padding-left: 4rem;
    position: relative;
  }
  .process-step:first-child { border-top: 0 !important; }
  .step-num {
    position: absolute; left: 1.2rem; top: 1.8rem;
    font-size: 1.6rem; margin-bottom: 0;
  }
  .step-dot { left: 1.7rem; top: 50%; transform: translate(-50%,-50%); }

  /* Contact */
  .contact-grid { gap: 2.2rem; }
  .contact-form { padding: 1.8rem 1.4rem; }
  .contact-map { height: 200px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 2.2rem; padding: 3.5rem 5vw 2.5rem; }
  .footer-bar {
    flex-direction: column; align-items: flex-start; gap: 0.8rem;
    padding: 1.4rem 5vw;
  }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }
  .footer-tagline { max-width: 100%; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 0.9rem; }
  .contact-form { gap: 1rem; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  /* Showcase */
  .showcase-grid { grid-template-columns: 1fr; gap: 2px; }
  .showcase-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .showcase-card { aspect-ratio: 4/3; }
  .showcase-card__stats { opacity: 1; transform: none; }
  .showcase-card__cta   { opacity: 1; transform: none; }
  .showcase-card__body { padding: 1.4rem 1.2rem; }
  .showcase-card__title { font-size: 1rem; }
}

@media (max-width: 480px) {
  .stats-inner { padding: 2.5rem 5vw; }
  .stat-item { padding: 1.6rem 1rem; }
  .svc-card { padding: 1.8rem 1.4rem; }
  .tcard { padding: 1.4rem 1.2rem; gap: 0.9rem; }
  .tcard__quote { font-size: 0.86rem; }
  .contact-form { padding: 1.5rem 1.2rem; }
  .form-input, .form-select, .form-textarea { padding: 0.8rem 0.9rem; font-size: 0.86rem; }
}

/* ============================================================================
   CURSOR SPOTLIGHT — 21st.dev-style glow that follows the pointer across cards.
   Layered behind the card content (z-index:-1) so text never dims; the card's
   overflow:hidden clips it to the rounded shape. JS sets --mx / --my (px).
   ============================================================================ */
.svc-card::after,
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .4s var(--ease);
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 0%),
    rgba(255, 184, 0, 0.16),
    rgba(255, 184, 0, 0.05) 38%,
    transparent 64%
  );
}
.svc-card:hover::after,
.team-card:hover::after { opacity: 1; }

/* Premium depth: soft accent shadow + slight lift on hover */
.svc-card,
.team-card { will-change: transform; transition:
    border-color .4s var(--ease), background .4s var(--ease),
    box-shadow .45s var(--ease), transform .45s var(--ease); }
.svc-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(255, 184, 0, 0.12),
              0 10px 40px -20px rgba(255, 184, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .svc-card:hover, .team-card:hover { transform: none; }
}

/* ============================================================================
   PROJECT REEL — fullscreen cinematic slider (post-3D transition)
   ============================================================================ */
#project-reel {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}
.reel-swiper { width: 100%; height: 100%; }

.reel-slide {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}
.reel-slide__bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
/* <img> fills with object-fit:cover; Ken Burns lives on the img for sharpest GPU render */
.reel-slide__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.swiper-slide-active .reel-slide__bg img {
  animation: reel-kb 9s ease-out forwards;
}
.swiper-slide-prev .reel-slide__bg img,
.swiper-slide-next .reel-slide__bg img {
  animation: none;
  transform: scale(1.0);
}
@keyframes reel-kb {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0);  }
}

.reel-slide__vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top,  rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 42%, transparent 65%),
    linear-gradient(to right, rgba(0,0,0,.4)  0%, transparent 55%);
}

.reel-slide__content {
  position: absolute; z-index: 2;
  bottom: 0; left: 0; right: 0;
  padding: 5rem var(--gutter) 9rem;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .9s var(--ease), opacity .9s var(--ease);
}
.swiper-slide-active .reel-slide__content {
  transform: translateY(0);
  opacity: 1;
}

.reel-slide__eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: .4rem;
  margin-bottom: 1.2rem;
}
.reel-num  { font-variant-numeric: tabular-nums; }
.reel-sep  { opacity: .5; }

.reel-slide__title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  color: #fff; margin-bottom: 1rem;
}

.reel-slide__meta {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 2rem;
}
.reel-slide__meta svg { color: var(--accent); flex: none; }

.reel-slide__cta {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .72rem 1.6rem;
  background: var(--accent); color: #14130c;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: background .3s var(--ease), gap .3s var(--ease), box-shadow .3s var(--ease);
}
.reel-slide__cta:hover {
  background: var(--accent-soft);
  gap: 1rem;
  box-shadow: 0 8px 28px -8px rgba(255,184,0,.5);
}

.reel-pagination {
  position: absolute !important;
  bottom: 4rem !important; right: var(--gutter) !important;
  left: auto !important; width: auto !important;
  display: flex; gap: .5rem; z-index: 10;
}
.reel-pagination .swiper-pagination-bullet {
  width: 28px; height: 2px; border-radius: 1px;
  background: rgba(255,255,255,.35);
  transition: background .3s, width .3s;
  opacity: 1; margin: 0 !important;
}
.reel-pagination .swiper-pagination-bullet-active {
  background: var(--accent); width: 44px;
}

.reel-counter {
  position: absolute; top: 2.2rem; right: var(--gutter); z-index: 10;
  display: flex; align-items: center; gap: .8rem;
  font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.6);
  letter-spacing: .1em;
}
.reel-counter__bar {
  width: 48px; height: 1px; background: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
.reel-counter__fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--accent);
  transition: width .6s var(--ease);
}

.reel-down {
  position: absolute; bottom: 2.6rem; left: 50%; z-index: 10;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  text-decoration: none;
  animation: reel-bounce 1.8s ease-in-out infinite;
  transition: color .3s;
}
.reel-down:hover { color: var(--accent); }
@keyframes reel-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

@media (prefers-reduced-motion: reduce) {
  .swiper-slide-active .reel-slide__bg img { animation: none; transform: scale(1.0); }
  .reel-down { animation: none; }
}

/* ============================================================================
   PROJECT SHOWCASE — 8 proje, büyük hover-reveal grid
   ============================================================================ */
#showcase { background: rgba(12,12,14,0.88); }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.showcase-card--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.showcase-card       { aspect-ratio: 3 / 4; }

.showcase-card {
  position: relative; overflow: hidden;
  display: block; text-decoration: none; cursor: pointer;
  background: var(--bg-charcoal);
  transition: box-shadow .5s var(--ease);
}
.showcase-card:hover {
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.85),
              0 0 30px -12px rgba(255,184,0,.22);
}

.showcase-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.showcase-card:hover .showcase-card__img {
  transform: scale(1.07);
}

.showcase-card__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.95) 0%, rgba(0,0,0,.55) 38%,
    rgba(0,0,0,.14) 65%, transparent 100%
  );
}

.showcase-card__body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: .5rem;
}

.showcase-card__type {
  font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); padding: .28em .7em;
  background: rgba(255,184,0,.12); border: 1px solid rgba(255,184,0,.28);
  border-radius: 999px; width: fit-content;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.showcase-card__title {
  font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em;
  line-height: 1.2; color: #fff;
}
.showcase-card--wide .showcase-card__title { font-size: 1.45rem; }

.showcase-card__loc {
  display: flex; align-items: center; gap: .35rem;
  font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 400;
}
.showcase-card__loc svg { color: var(--accent); flex: none; }

.showcase-card__stats {
  display: flex; gap: 1.4rem; list-style: none; margin-top: .6rem;
  transform: translateY(18px); opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.showcase-card:hover .showcase-card__stats { transform: translateY(0); opacity: 1; }

.showcase-card__stats li {
  display: flex; flex-direction: column; gap: .12rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.showcase-card__stats li span {
  font-size: 1.2rem; font-weight: 800; letter-spacing: -.03em;
  color: var(--white); line-height: 1;
}

.showcase-card__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .8rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
  transform: translateY(14px); opacity: 0;
  transition: transform .45s .06s var(--ease), opacity .45s .06s var(--ease), gap .3s var(--ease);
}
.showcase-card:hover .showcase-card__cta { transform: translateY(0); opacity: 1; }
.showcase-card:hover .showcase-card__cta:hover { gap: .9rem; }

.showcase-footer {
  display: flex; justify-content: center; margin-top: 4rem;
}

@media (max-width: 1100px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-card--wide { grid-column: span 2; }
  .showcase-card { aspect-ratio: 4 / 3; }
}
@media (max-width: 680px) {
  #project-reel { height: 88svh; min-height: 500px; }
  .reel-slide__title { font-size: clamp(1.9rem, 8.5vw, 3rem); }
  /* bottom-nav (~60px) + safe-area için alt padding */
  .reel-slide__content { padding: 3rem 5vw calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
  .reel-slide__meta { font-size: 0.82rem; }
  /* topbar altında göster */
  .reel-counter { top: 4.5rem; right: 5vw; }
  /* bottom-nav (~72px) üstünde göster */
  .reel-pagination {
    bottom: calc(5rem + env(safe-area-inset-bottom, 0px)) !important;
    right: 5vw !important;
  }
  .reel-slide__cta { font-size: 0.76rem; padding: 0.62rem 1.3rem; }
  /* bottom-nav scroll görevi üstlendiğinden aşağı ok gizle */
  .reel-down { display: none; }
}

/* ============================================================================
   MILESTONES — Kilometre Taşları
   ============================================================================ */
#milestones {
  background: rgba(7,7,11,0.92);
  border-top: 1px solid var(--divider);
}

.timeline-wrap {
  position: relative;
  margin-top: 3.5rem;
}

/* Horizontal connecting line */
.timeline-line {
  position: absolute;
  top: 18px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,184,0,0.25) 8%,
    rgba(255,184,0,0.5) 50%,
    rgba(255,184,0,0.25) 92%,
    transparent 100%);
  pointer-events: none;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.timeline-item {
  padding: 0 1.8rem 2rem;
  border-right: 1px solid var(--divider);
  position: relative;
  transition: background .4s var(--ease);
}
.timeline-item:last-child { border-right: 0; }
.timeline-item:nth-child(n+5) { border-top: 1px solid var(--divider); padding-top: 2rem; }
.timeline-item:hover { background: rgba(255,184,0,0.022); }

/* Dot on the timeline */
.timeline-dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,184,0,0.15), 0 0 14px rgba(255,184,0,0.45);
  margin-bottom: 1.4rem;
  position: relative; z-index: 1;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 5px rgba(255,184,0,0.2), 0 0 22px rgba(255,184,0,0.6);
  transform: scale(1.2);
}

.timeline-year {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.55rem; display: block;
}
.timeline-title {
  font-size: 1.02rem; font-weight: 700; letter-spacing: -0.015em;
  color: var(--white); margin-bottom: 0.55rem; line-height: 1.25;
}
.timeline-desc {
  font-size: 0.80rem; font-weight: 300; line-height: 1.68;
  color: var(--muted);
}
.timeline-img {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 8px; overflow: hidden;
  margin-top: 1.1rem;
  border: 1px solid var(--card-bd);
}
.timeline-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.45) brightness(0.8);
  transition: filter .55s var(--ease);
}
.timeline-item:hover .timeline-img img {
  filter: grayscale(0) brightness(1);
}

/* ============================================================================
   WHY US — Neden Biz
   ============================================================================ */
#why-us { background: rgba(10,10,14,0.90); }

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--divider);
  border-radius: 14px;
  overflow: hidden;
}

/* Left: large image */
.why-visual {
  position: relative;
  min-height: 520px;
}
.why-visual__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
}
.why-visual__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,184,0,0.10) 0%,
    rgba(0,0,0,0.25) 100%);
}
.why-visual__badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(4,4,7,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
}
.why-badge-num {
  font-size: 2.8rem; font-weight: 800; letter-spacing: -0.06em;
  color: var(--accent); line-height: 1; display: block;
}
.why-badge-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--silver);
  margin-top: 0.3rem; display: block;
}

/* Right: feature cards */
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  transition: background .4s var(--ease);
  position: relative; overflow: hidden;
}
.why-card:nth-child(even) { border-right: 0; }
.why-card:nth-child(n+3)  { border-bottom: 0; }
.why-card:hover { background: rgba(255,184,0,0.025); }

.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,184,0,0.055) 0%, transparent 60%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.why-card:hover::before { opacity: 1; }

.why-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,184,0,0.09);
  border: 1px solid rgba(255,184,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 1.4rem;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.why-card:hover .why-icon-wrap {
  background: rgba(255,184,0,0.18);
  transform: scale(1.06);
}
.why-card-title {
  font-size: 1rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 0.6rem; line-height: 1.25;
}
.why-card-desc {
  font-size: 0.80rem; font-weight: 300; line-height: 1.7;
  color: var(--muted);
}
.why-card-stat {
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.05em;
  color: var(--accent); margin-top: 1.2rem; line-height: 1; display: block;
}
.why-card-stat-lbl {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--faint);
}

/* ============================================================================
   AWARDS — Ödüller & Sertifikalar
   ============================================================================ */
#awards {
  background: rgba(13,14,19,0.88);
  border-top: 1px solid var(--divider);
}

.awards-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}

.award-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  padding: 2.4rem 2rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  position: relative; overflow: hidden;
  transition: border-color .4s var(--ease), background .4s var(--ease),
              box-shadow .45s var(--ease), transform .45s var(--ease);
  will-change: transform;
}
.award-card:hover {
  border-color: rgba(255,184,0,0.28);
  background: rgba(255,184,0,0.03);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -18px rgba(0,0,0,.7),
              0 0 0 1px rgba(255,184,0,0.10),
              0 10px 40px -20px rgba(255,184,0,0.30);
}
.award-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(
    200px circle at var(--mx,50%) var(--my,0%),
    rgba(255,184,0,0.10), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.award-card:hover::before { opacity: 1; }

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

.award-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  transition: transform .4s var(--ease);
}
.award-card:hover .award-icon { transform: scale(1.1) rotate(-5deg); }

.award-label {
  font-size: 0.60rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}
.award-name {
  font-size: 1.05rem; font-weight: 700; letter-spacing: -0.015em;
  color: var(--white); line-height: 1.25;
}
.award-desc {
  font-size: 0.80rem; font-weight: 300; line-height: 1.65;
  color: var(--muted); flex: 1;
}
.award-year {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--faint);
  padding-top: 0.8rem;
  border-top: 1px solid var(--divider);
}

/* ── Responsive: Milestones ── */
@media (max-width: 1100px) {
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-item:nth-child(2n) { border-right: 0; }
  .timeline-item:nth-child(n+3) { border-top: 1px solid var(--divider); padding-top: 2rem; }
  .timeline-line { display: none; }
}

/* ── Responsive: Why Us ── */
@media (max-width: 1100px) {
  .why-split { grid-template-columns: 1fr; }
  .why-visual { min-height: 280px; }
}

/* ── Responsive: Awards ── */
@media (max-width: 1100px) {
  .awards-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  /* Milestones */
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-item { border-right: 0 !important; border-top: 1px solid var(--divider) !important; padding: 1.8rem 1.5rem 1.8rem 3rem; }
  .timeline-item:first-child { border-top: 0 !important; }
  .timeline-dot { position: absolute; left: 1.1rem; top: 2rem; margin-bottom: 0; }
  .timeline-wrap { padding-left: 0; }

  /* Why Us */
  .why-split { border-radius: 10px; }
  .why-visual { min-height: 220px; }
  .why-cards { grid-template-columns: 1fr; }
  .why-card { border-right: 0 !important; }
  .why-card:nth-child(n+3) { border-bottom: 1px solid var(--divider); }
  .why-card:last-child { border-bottom: 0; }

  /* Awards */
  .awards-strip { grid-template-columns: 1fr; gap: 2px; }
  .award-card { padding: 1.8rem 1.4rem; }

  /* Showcase — force a single column on phones. This MUST live after the
     `@media (max-width: 1100px)` showcase rule above: both match at ≤680px with
     equal specificity, so source order decides and the 2-column 1100px rule
     would otherwise win and leave tiny side-by-side cards on mobile. */
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
}
