/* ═══════════════════════════════════════════════════════
   DARK MINIMAL PORTFOLIO — site.css
   Theme: #0a0a0a · Accent: #6366f1/#8b5cf6
   Fonts: Inter (body) · Space Grotesk (headings)
═══════════════════════════════════════════════════════ */

/* ──────────────────────────────────────
   DESIGN TOKENS
────────────────────────────────────── */
:root {
  /* backgrounds */
  --bg:          #0a0a0a;
  --bg-mid:      #111111;
  --bg-card:     #1a1a1a;
  --bg-input:    #141414;

  /* borders */
  --border:      rgba(255,255,255,0.08);
  --border-hi:   rgba(255,255,255,0.15);

  /* accent */
  --accent:      #6366f1;
  --accent-2:    #8b5cf6;
  --grad:        linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --grad-h:      linear-gradient(90deg,  #6366f1 0%, #8b5cf6 100%);
  --glow:        rgba(99,102,241,0.25);
  --glow-sm:     rgba(99,102,241,0.12);

  /* text */
  --txt:         #f1f5f9;
  --txt-muted:   #94a3b8;
  --txt-dim:     #475569;

  /* misc */
  --r:           12px;
  --r-sm:        8px;
  --ease:        all 0.25s ease;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
}

/* ──────────────────────────────────────
   RESET & BASE
────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  position: relative;
  min-height: 100%;
}

body {
  background: var(--bg) !important;
  color: var(--txt-muted) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  -webkit-font-smoothing: antialiased !important;
  margin-bottom: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif !important;
  color: var(--txt) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
}

p { color: var(--txt-muted); line-height: 1.8; }
a { transition: var(--ease); }

::selection { background: var(--glow); color: var(--txt); }

/* scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ──────────────────────────────────────
   PRELOADER
────────────────────────────────────── */
#preloader { background: var(--bg) !important; }
#loader {
  border-color: rgba(255,255,255,0.05) !important;
  border-top-color: var(--accent) !important;
}

/* ──────────────────────────────────────
   NAVBAR
────────────────────────────────────── */
.s-header {
  background: transparent !important;
  border-bottom: none !important;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* JS adds .scrolled on scroll */
.s-header.scrolled,
.s-header.scrolling {
  background: rgba(10,10,10,0.88) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5) !important;
}

.header-logo { display: none !important; }

.header-nav a {
  color: var(--txt-dim) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  transition: color 0.25s !important;
  position: relative !important;
  padding-bottom: 4px !important;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad-h);
  border-radius: 99px;
  transition: width 0.28s ease;
}

.header-nav a:hover,
.header-nav li.current a         { color: var(--txt) !important; }

.header-nav a:hover::after,
.header-nav li.current a::after  { width: 100%; }

/* mobile hamburger */
.header-menu-toggle span,
.header-menu-toggle span::before,
.header-menu-toggle span::after  { background: var(--txt-muted) !important; }

/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
.s-home.page-hero {
  background: var(--bg) !important;
  background-image: none !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 100vh !important;
}

/* dot-grid texture */
.s-home::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(99,102,241,0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}

/* purple glow orb — top-right */
.s-home::after {
  content: '';
  position: absolute;
  top: -15%; right: -8%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.s-home .overlay,
.s-home .shadow-overlay { background: transparent !important; opacity: 0 !important; }

.home-content { position: relative !important; z-index: 2 !important; }

/* secondary glow — bottom-left */
.home-content::before {
  content: '';
  position: absolute;
  bottom: -5%; left: -8%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.home-content__main h3 {
  color: var(--accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  margin-bottom: 1.5rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.7rem !important;
}

.home-content__main h3::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 99px;
  flex-shrink: 0;
}

.home-content__main h1 {
  font-family: 'Space Grotesk', sans-serif !important;
  color: var(--txt) !important;
  font-size: clamp(2.8rem, 6vw, 5rem) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  margin-bottom: 2.6rem !important;
}

/* ── Hero buttons ── */
.home-content__buttons {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 0.85rem !important;
  align-items: center !important;
}

.home-content__buttons .btn--stroke {
  display: inline-block !important;
  border-radius: 50px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.9rem 2rem !important;
  min-width: 148px !important;
  text-align: center !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
              border-color 0.25s ease, color 0.25s ease !important;
}

.home-content__buttons .btn--stroke:first-child {
  background: var(--grad) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 0 32px var(--glow) !important;
}

.home-content__buttons .btn--stroke:first-child:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(99,102,241,0.45) !important;
}

.home-content__buttons .btn--stroke:last-child {
  background: transparent !important;
  border: 1px solid var(--border-hi) !important;
  color: var(--txt-muted) !important;
  backdrop-filter: blur(8px) !important;
}

.home-content__buttons .btn--stroke:last-child:hover {
  border-color: var(--accent) !important;
  color: var(--txt) !important;
  transform: translateY(-2px) !important;
  background: var(--glow-sm) !important;
}

@media (max-width: 768px) {
  .home-content__buttons {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .home-content__buttons .btn--stroke {
    width: 100% !important;
  }
}

.home-content__scroll a {
  color: var(--txt-dim) !important;
  font-size: 0.63rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  transition: color 0.25s !important;
}
.home-content__scroll a:hover { color: var(--txt-muted) !important; }

.home-social { border-left: 1px solid var(--border) !important; }
.home-social a {
  color: var(--txt-dim) !important;
  transition: color 0.25s, transform 0.25s !important;
}
.home-social a:hover {
  color: var(--accent) !important;
  transform: translateX(3px) !important;
}

/* ──────────────────────────────────────
   ABOUT
────────────────────────────────────── */
.s-about {
  background: var(--bg-mid) !important;
  padding: 9rem 0 !important;
  position: relative !important;
}

/* gradient divider line at top */
.s-about::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 480px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.45;
}

.s-about .section-intro h3 {
  color: var(--accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.66rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
}

.s-about .section-intro h1 {
  color: var(--txt) !important;
  font-size: 2.6rem !important;
  font-weight: 700 !important;
}

.s-about .section-intro .lead,
.s-about .section-intro p {
  color: var(--txt-muted) !important;
  font-size: 1rem !important;
  line-height: 1.85 !important;
}

.about-content h3 {
  color: var(--txt) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
}

.about-content > div > p {
  color: var(--txt-muted) !important;
  font-size: 0.95rem !important;
  line-height: 1.9 !important;
}

/* CV button */
.btn--primary {
  display: inline-block !important;
  border-radius: 50px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.9rem 2rem !important;
  min-width: 160px !important;
  text-align: center !important;
  background: transparent !important;
  border: 1px solid var(--border-hi) !important;
  color: var(--txt) !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 0 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease,
              border-color 0.25s ease !important;
}

.btn--primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  z-index: -1; opacity: 0;
  transition: opacity 0.25s;
}

.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover {
  border-color: transparent !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px var(--glow) !important;
}

/* ══════════════════════════════════════════
   SKILLS — DARK CARD GRID
   ul.skills-grid (hola-master'dan bağımsız class)
   Model: Skill.Title · Skill.Value (0-100)
══════════════════════════════════════════ */
.skills-grid {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.skill-item {
  background: #1e1e1e !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  padding: 1rem 1.2rem !important;
  margin-bottom: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
  height: auto !important;
}

.skill-item:hover {
  border-color: rgba(99,102,241,0.38) !important;
  box-shadow: 0 4px 24px rgba(99,102,241,0.1) !important;
  transform: translateX(3px) !important;
}

/* left accent bar */
.skill-item::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important; top: 0 !important; bottom: 0 !important; width: 3px !important;
  background: var(--grad) !important;
  border-radius: 0 3px 3px 0 !important;
  transform: scaleY(0) !important;
  transform-origin: bottom !important;
  transition: transform 0.3s ease !important;
}
.skill-item:hover::before { transform: scaleY(1) !important; }

.skill-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 8px !important;
  width: 100% !important;
}

.skill-name {
  color: #f1f5f9 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  font-family: 'Inter', sans-serif !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.skill-percent {
  color: #6366f1 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  width: auto !important;
  height: auto !important;
}

.skill-bar-track {
  width: 100% !important;
  height: 6px !important;
  background: rgba(255,255,255,0.08) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  display: block !important;
}

.skill-bar-fill {
  height: 100% !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #6366f1, #8b5cf6) !important;
  box-shadow: 0 0 10px rgba(99,102,241,0.4) !important;
  width: 0% !important;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: block !important;
  min-width: 0 !important;
}

/* ══════════════════════════════════════════
   EXPERIENCE — CENTER TIMELINE
══════════════════════════════════════════ */

/* section wrapper */
.exp-section {
  padding: 0.5rem 0 3.5rem;
}

/* başlık bloğu */
.exp-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.exp-label {
  display: inline-block;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.exp-title {
  font-family: 'Space Grotesk', sans-serif !important;
  color: var(--txt) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 0.8rem !important;
}

.exp-subtitle {
  color: var(--txt-muted);
  font-size: 0.92rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

/* merkezi çizgili container */
.exp-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* merkez dikey çizgi */
.exp-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--accent) 8%,
    var(--accent-2) 90%,
    transparent 100%
  );
  opacity: 0.35;
}

/* her satır */
.exp-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  /* animasyon başlangıç durumu */
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.exp-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* kart: sol öğe */
.exp-item--left .exp-card     { order: 1; text-align: right; }
.exp-item--left .exp-connector { order: 2; }
.exp-item--left .exp-spacer   { order: 3; }

/* kart: sağ öğe */
.exp-item--right .exp-spacer    { order: 1; }
.exp-item--right .exp-connector  { order: 2; }
.exp-item--right .exp-card      { order: 3; text-align: left; }

/* kart */
.exp-card {
  width: calc(50% - 2.5rem);
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.exp-card:hover {
  border-color: rgba(99,102,241,0.38);
  box-shadow: 0 10px 36px rgba(99,102,241,0.12);
  transform: translateY(-4px);
}

/* sol kart oku */
.exp-item--left .exp-card::after {
  content: '';
  position: absolute;
  top: 1.5rem; right: -8px;
  border: 8px solid transparent;
  border-left-color: #1a1a1a;
}

/* sağ kart oku */
.exp-item--right .exp-card::after {
  content: '';
  position: absolute;
  top: 1.5rem; left: -8px;
  border: 8px solid transparent;
  border-right-color: #1a1a1a;
}

/* merkez connector */
.exp-connector {
  width: 5rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1.4rem;
}

/* nokta */
.exp-dot {
  width: 14px; height: 14px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(99,102,241,0.15),
    0 0 18px rgba(99,102,241,0.45);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.25s, box-shadow 0.25s;
}

.exp-item:hover .exp-dot {
  transform: scale(1.35);
  box-shadow:
    0 0 0 6px rgba(99,102,241,0.22),
    0 0 26px rgba(99,102,241,0.65);
}

/* boşluk (karşı taraf) */
.exp-spacer {
  width: calc(50% - 2.5rem);
  flex-shrink: 0;
}

/* ── kart içi ── */
.exp-card__year {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.22);
  border-radius: 20px;
  padding: 0.18rem 0.7rem;
  margin-bottom: 0.85rem;
}

.exp-card__head {
  font-family: 'Space Grotesk', sans-serif !important;
  color: var(--txt) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 0.3rem !important;
}

.exp-card__role {
  font-family: 'Inter', sans-serif !important;
  color: var(--txt-dim) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  margin-bottom: 0.85rem !important;
}

.exp-card__desc {
  font-size: 0.875rem !important;
  color: var(--txt-muted) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}

/* ── mobile ── */
@media (max-width: 768px) {
  .exp-timeline::before {
    left: 18px;
  }

  .exp-item {
    flex-direction: column !important;
    padding-left: 3rem;
    position: relative;
  }

  .exp-item--left .exp-card,
  .exp-item--right .exp-card {
    width: 100% !important;
    text-align: left !important;
    order: 2 !important;
  }

  .exp-item--left .exp-card::after,
  .exp-item--right .exp-card::after { display: none !important; }

  .exp-connector {
    position: absolute !important;
    left: 6px !important;
    top: 0 !important;
    width: auto !important;
    padding-top: 0 !important;
    order: 1 !important;
  }

  .exp-spacer { display: none !important; }
}

/* ──────────────────────────────────────
   STATS
────────────────────────────────────── */
.s-stats {
  background: var(--bg-mid) !important;
  padding: 5rem 0 !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
  position: relative !important;
}

/* dot grid */
.s-stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; opacity: 0.4;
}

.stats__col {
  border-right: 1px solid var(--border) !important;
  padding: 2.2rem 1.5rem !important;
  text-align: center !important;
  position: relative !important; z-index: 1 !important;
  transition: background 0.25s !important;
}
.stats__col:last-child { border-right: none !important; }
.stats__col:hover { background: var(--glow-sm) !important; }

.stats__count {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 4rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.045em !important;
  background: var(--grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: block !important;
}

.stats h4 {
  color: var(--txt-dim) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.63rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin-top: 0.75rem !important;
}

.stats__upsign a { color: var(--accent) !important; opacity: 0.7 !important; }

@media (max-width: 768px) {
  .stats__col {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .stats__col:last-child { border-bottom: none !important; }
}

/* ──────────────────────────────────────
   PORTFOLIO / WORKS
────────────────────────────────────── */
.s-works {
  background: var(--bg) !important;
  padding: 9rem 0 !important;
  position: relative !important;
}

.s-works::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.09) 0%, transparent 62%);
  pointer-events: none;
}

.s-works .section-intro h3 {
  color: var(--accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.66rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
}

.s-works .section-intro h1 {
  color: var(--txt) !important;
  font-size: 2.4rem !important;
  font-weight: 700 !important;
}

.s-works .section-intro .lead {
  color: var(--txt-muted) !important;
  font-size: 0.96rem !important;
  line-height: 1.85 !important;
}

.item-folio {
  border-radius: var(--r) !important;
  overflow: hidden !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.item-folio:hover {
  transform: translateY(-5px) scale(1.01) !important;
  border-color: rgba(99,102,241,0.38) !important;
  box-shadow: 0 16px 48px rgba(99,102,241,0.14) !important;
}

.item-folio__thumb img {
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.3s !important;
  opacity: 0.78 !important;
}

.item-folio:hover .item-folio__thumb img {
  transform: scale(1.07) !important;
  opacity: 1 !important;
}

.item-folio__text {
  background: linear-gradient(0deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.5) 100%) !important;
}

.item-folio__title {
  color: var(--txt) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}

.item-folio__cat {
  color: var(--accent) !important;
  font-size: 0.6rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.item-folio__project-link {
  background: var(--grad) !important;
  color: #fff !important;
  border-radius: 50% !important;
  transition: box-shadow 0.25s !important;
}

.item-folio__project-link:hover {
  box-shadow: 0 4px 18px var(--glow) !important;
}

/* ──────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────── */
.s-testimonials {
  background: var(--bg-mid) !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
}

.s-testimonials .overlay { background: transparent !important; opacity: 0 !important; }

.testimonials-header h1 {
  color: var(--txt) !important;
  font-size: 2.1rem !important;
  font-weight: 700 !important;
}

.testimonials__slide p {
  color: var(--txt-muted) !important;
  font-size: 0.96rem !important;
  line-height: 1.9 !important;
}

.testimonials__avatar {
  border: 2px solid rgba(99,102,241,0.38) !important;
  box-shadow: 0 0 24px rgba(99,102,241,0.18) !important;
}

.testimonials__author {
  color: var(--txt) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600 !important;
}

.testimonials__author span {
  color: var(--accent) !important;
  font-weight: 400 !important;
  font-size: 0.82rem !important;
}

/* ──────────────────────────────────────
   CONTACT
────────────────────────────────────── */
.s-contact {
  background: var(--bg-card) !important;
  padding: 9rem 0 !important;
  position: relative !important;
}

.s-contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.s-contact .overlay { background: transparent !important; opacity: 0 !important; }

.s-contact .section-intro h3 {
  color: var(--accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.66rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
}

.s-contact .section-intro h1 {
  color: var(--txt) !important;
  font-size: 2.4rem !important;
  font-weight: 700 !important;
}

.s-contact .lead {
  color: var(--txt-muted) !important;
  line-height: 1.85 !important;
  font-size: 0.96rem !important;
}

.s-contact .form-field { margin-bottom: 1.2rem !important; }

.s-contact .form-field input,
.s-contact .form-field textarea {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  color: var(--txt) !important;
  padding: 0.9rem 1.1rem !important;
  font-size: 0.92rem !important;
  font-family: 'Inter', sans-serif !important;
  width: 100% !important;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s !important;
}

.s-contact .form-field input:focus,
.s-contact .form-field textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--glow-sm) !important;
  outline: none !important;
  background: rgba(99,102,241,0.04) !important;
}

.s-contact .form-field input::placeholder,
.s-contact .form-field textarea::placeholder {
  color: var(--txt-dim) !important;
}

.s-contact button.full-width.btn--primary {
  background: var(--grad) !important;
  border: none !important;
  border-radius: var(--r-sm) !important;
  color: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  cursor: pointer !important;
  transition: var(--ease) !important;
  box-shadow: 0 4px 24px var(--glow) !important;
}

.s-contact button.full-width.btn--primary:hover {
  opacity: 0.88 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 32px rgba(99,102,241,0.38) !important;
}

.contact__infos h4 {
  color: var(--accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.63rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
}

.contact__infos p {
  color: var(--txt-muted) !important;
  font-size: 0.92rem !important;
  line-height: 1.88 !important;
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
footer {
  background: var(--bg) !important;
  border-top: 1px solid var(--border) !important;
  padding: 3rem 0 !important;
}

.footer-logo .footer-site-logo img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.18 !important;
}

.footer-social a {
  color: var(--txt-dim) !important;
  transition: color 0.25s, transform 0.25s !important;
  font-size: 1.3rem !important;
}
.footer-social a:hover {
  color: var(--accent) !important;
  transform: translateY(-2px) !important;
}

.copyright {
  color: var(--txt-dim) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
}

.go-top a {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border) !important;
  color: var(--txt-dim) !important;
  border-radius: 50% !important;
  transition: var(--ease) !important;
}
.go-top a:hover {
  background: var(--grad) !important;
  border-color: transparent !important;
  color: var(--bg) !important;
  box-shadow: 0 4px 18px var(--glow) !important;
}

/* ──────────────────────────────────────
   SECTION SEPARATOR LINE
────────────────────────────────────── */
.has-bottom-sep::after {
  background: linear-gradient(90deg, transparent, var(--accent), transparent) !important;
  width: 80px !important;
  height: 1px !important;
  opacity: 0.55 !important;
}

/* ──────────────────────────────────────
   ANIMATIONS
────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* hero stagger */
.home-content__main h3 { animation: fadeSlideUp 0.6s 0.10s ease both; }
.home-content__main h1 { animation: fadeSlideUp 0.7s 0.22s ease both; }
.home-content__buttons { animation: fadeSlideUp 0.6s 0.36s ease both; }
.home-content__scroll  { animation: fadeSlideUp 0.6s 0.50s ease both; }
.home-social           { animation: fadeSlideUp 0.6s 0.42s ease both; }

/* general utility */
.anim-fade { opacity: 0; animation: fadeSlideUp 0.6s ease forwards; }
.anim-d1   { animation-delay: 0.1s; }
.anim-d2   { animation-delay: 0.2s; }
.anim-d3   { animation-delay: 0.3s; }
.anim-d4   { animation-delay: 0.4s; }

/* ──────────────────────────────────────
   GLOBAL RESPONSIVE
────────────────────────────────────── */
@media (max-width: 768px) {
  .home-content__main h1 { font-size: 2.4rem !important; }
  .s-about    { padding: 6rem 0 !important; }
  .s-works    { padding: 6rem 0 !important; }
  .s-contact  { padding: 6rem 0 !important; }
}
