/* =============================================
   MARKATEK — Modern Brand Design System (Light)
   Author: Redesign 2026
   ============================================= */

:root {
  /* Brand Palette */
  --brand-red: #E40521;
  --brand-red-soft: #ff2740;
  --brand-red-deep: #b00216;

  /* Light Surfaces */
  --bg: #F7F5F0;          /* warm cream — ana zemin */
  --bg-alt: #FFFFFF;      /* kart yüzeyleri */
  --bg-soft: #EFEBE3;     /* alternatif soft zemin */
  --bg-tint: #FCF4F2;     /* kırmızıya çok hafif kayan rosé tint */

  /* Ink (text) */
  --ink: #0E0E14;
  --ink-2: #1F2029;
  --ink-3: #54565F;
  --ink-4: #8A8C95;
  --ink-faint: #B6B7BD;

  /* Lines & Shadows */
  --line: rgba(14, 14, 20, 0.08);
  --line-2: rgba(14, 14, 20, 0.14);
  --line-strong: rgba(14, 14, 20, 0.22);
  --shadow-sm: 0 1px 2px rgba(14, 14, 20, 0.06), 0 1px 1px rgba(14, 14, 20, 0.04);
  --shadow-md: 0 8px 24px -10px rgba(14, 14, 20, 0.12), 0 2px 6px rgba(14, 14, 20, 0.05);
  --shadow-lg: 0 30px 60px -28px rgba(14, 14, 20, 0.20), 0 10px 24px -12px rgba(14, 14, 20, 0.08);
  --shadow-red: 0 18px 40px -16px rgba(228, 5, 33, 0.40);

  /* Footer dark */
  --footer-bg: #0E0E14;
  --footer-line: rgba(255,255,255,0.10);

  /* Gradients */
  --gx-red: linear-gradient(135deg, #ff3247 0%, #E40521 50%, #8a0010 100%);
  --gx-spot: radial-gradient(60% 60% at 50% 0%, rgba(228,5,33,0.18) 0%, rgba(228,5,33,0) 70%);

  /* Type */
  --ff-display: "Space Grotesk", "Plus Jakarta Sans", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-serif: "Instrument Serif", "Playfair Display", Georgia, serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--brand-red); color: #fff; }

/* ========== Typography ========== */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.15rem; }
p { color: var(--ink-3); }

em.italic, .italic-em {
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--brand-red);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brand-red);
}

.gradient-text {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink) 30%, var(--brand-red) 70%, var(--brand-red-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-red { color: var(--brand-red); }

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; padding: clamp(80px, 10vw, 140px) 0; }
section.tight { padding: clamp(60px, 6vw, 90px) 0; }
section.alt { background: var(--bg-alt); }
section.soft { background: var(--bg-soft); }

/* ========== Custom Cursor ========== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .25s var(--ease);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--brand-red);
  border-radius: 50%;
  transition: transform .15s var(--ease), background .25s var(--ease);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(14,14,20,0.35);
  border-radius: 50%;
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.cursor-ring.is-hover {
  width: 60px; height: 60px;
  border-color: var(--brand-red);
  background: rgba(228,5,33,0.06);
}
@media (max-width: 1024px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(14,14,20,0.04);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.nav__logo img {
  /* Logo PNG'si beyaz yazı + kırmızı çark.
     Light tema için sadece kırmızı çarkı (sol kısım) göster. */
  height: 34px;
  width: 34px;
  object-fit: cover;
  object-position: left center;
}
.nav__logo::after {
  content: "Markatek";
  display: inline-block;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--ink-3);
  font-weight: 400;
  border-radius: 10px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--ink); }
.nav__link.has-dropdown::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-top: -4px;
  opacity: .55;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.nav__cta:hover { background: var(--brand-red); transform: translateY(-1px); }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  position: relative;
  background: var(--bg-alt);
}
.nav__burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.6px;
  background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav__burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(420px, 90vw);
  background: var(--bg-alt);
  border-left: 1px solid var(--line);
  z-index: 99;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer a {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}
.nav__drawer a:hover { color: var(--brand-red); }

@media (max-width: 1024px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; align-items: center; justify-content: center; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover { background: var(--brand-red-soft); box-shadow: 0 22px 50px -16px rgba(228,5,33,0.55); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--bg-alt); }
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: var(--brand-red); }
.btn--white {
  background: #fff;
  color: var(--ink);
}
.btn--white:hover { background: var(--ink); color: #fff; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 160px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(228,5,33,0.10), transparent 70%),
    radial-gradient(40% 40% at 90% 30%, rgba(228,5,33,0.07), transparent 70%),
    var(--bg);
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,14,20,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,20,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  color: var(--ink);
}
.hero__title .word { display: inline-block; overflow: hidden; }
.hero__title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroReveal 1s var(--ease-out) forwards;
}
.hero__title .word:nth-child(2) > span { animation-delay: .12s; }
.hero__title .word:nth-child(3) > span { animation-delay: .24s; }
.hero__title .word:nth-child(4) > span { animation-delay: .36s; }
.hero__title .word:nth-child(5) > span { animation-delay: .48s; }
@keyframes heroReveal { to { transform: translateY(0); } }

.hero__title em {
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--brand-red);
}

.hero__sub {
  margin: 32px 0 40px;
  max-width: 560px;
  font-size: 1.08rem;
  color: var(--ink-3);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero__meta div b {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__meta div span {
  font-size: 0.84rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Hero visual orb */
.hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.32), transparent 50%),
    var(--gx-red);
  box-shadow: 0 60px 140px -20px rgba(228,5,33,0.55), inset 0 0 80px rgba(0,0,0,0.25);
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.03); }
}
.orb__ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
.orb__ring--2 { inset: -8%; animation-duration: 36s; animation-direction: reverse; border-style: dashed; }
.orb__ring--3 { inset: -16%; animation-duration: 50s; }
@keyframes spin { to { transform: rotate(360deg); } }

.orb__badge {
  position: absolute;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-family: var(--ff-display);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  font-weight: 500;
}
.orb__badge::before {
  content:"";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(228,5,33,0.20);
}
.orb__badge--1 { top: 8%; left: -8%; }
.orb__badge--2 { bottom: 14%; right: -10%; }
.orb__badge--3 { bottom: -2%; left: 18%; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { aspect-ratio: 1/1; max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ========== Marquee ========== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 32s linear infinite;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  align-items: center;
  font-weight: 400;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track .dot {
  width: 6px; height: 6px;
  background: var(--brand-red);
  border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ========== Section Heading ========== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 60px;
}
.section-head__left { max-width: 720px; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 18px; font-size: 1.05rem; max-width: 600px; }

/* ========== Service Cards ========== */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.service {
  position: relative;
  padding: 36px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
}
.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 100% 0%, rgba(228,5,33,0.08), transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-6px);
  border-color: var(--brand-red);
  box-shadow: var(--shadow-lg);
}
.service:hover::after { opacity: 1; }
.service > * { position: relative; z-index: 1; }

.service__num {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.service__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(228,5,33,0.08);
  border: 1px solid rgba(228,5,33,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 28px 0 24px;
  color: var(--brand-red);
}
.service h3 { margin-bottom: 12px; color: var(--ink); }
.service p { margin-bottom: 24px; color: var(--ink-3); }
.service__list {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto;
}
.service__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.service__list li::before {
  content: "→";
  color: var(--brand-red);
}
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--ff-display);
  font-size: 0.94rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  width: max-content;
  padding-bottom: 4px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
  font-weight: 500;
}
.service__link:hover { border-color: var(--brand-red); color: var(--brand-red); }
.service__link span { transition: transform .25s var(--ease); }
.service__link:hover span { transform: translateX(4px); }

.service.span-6 { grid-column: span 6; }
.service.span-4 { grid-column: span 4; }
.service.span-8 { grid-column: span 8; }
.service.span-12 { grid-column: span 12; }

@media (max-width: 1024px) {
  .service.span-4, .service.span-6, .service.span-8 { grid-column: span 6; }
}
@media (max-width: 640px) {
  .service.span-4, .service.span-6, .service.span-8, .service.span-12 { grid-column: span 12; }
  .service { padding: 28px; min-height: auto; }
}

/* ========== About / Split ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(228,5,33,0.10), transparent 40%),
    var(--bg-soft);
  border: 1px solid var(--line);
}
.split__media::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(228,5,33,0.30), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(14,14,20,0.06), transparent 60%);
}
.split__floating {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.split__floating b { font-family: var(--ff-display); font-size: 1.6rem; color: var(--ink); font-weight: 500; }
.split__floating span { font-size: 0.86rem; color: var(--ink-3); display: block; }

@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 50px; } }

/* ========== Process Timeline ========== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: pstep; }
.pstep {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: pstep;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pstep:hover {
  border-color: var(--brand-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pstep::before {
  content: "0" counter(pstep);
  font-family: var(--ff-display);
  font-size: 0.86rem;
  color: var(--brand-red);
  letter-spacing: 0.16em;
  font-weight: 500;
}
.pstep h4 { margin: 18px 0 10px; font-size: 1.2rem; color: var(--ink); }
.pstep p { font-size: 0.95rem; color: var(--ink-3); }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* ========== Stats ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}
.stat {
  padding: 40px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat span {
  margin-top: 14px;
  display: block;
  color: var(--ink-3);
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ========== References ========== */
.refs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ref {
  background: var(--bg-alt);
  padding: 40px 30px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-3);
  text-align: center;
  transition: background .25s var(--ease), color .25s var(--ease);
  min-height: 120px;
}
.ref:hover { background: var(--ink); color: #fff; }
.ref--logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 88px;
  height: auto;
  object-fit: contain;
  transition: transform .2s var(--ease);
}
.ref--logo:hover img { transform: scale(1.04); }
.ref--logo:hover { background: #fff; }
.ref__text {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.3;
}
a.ref--logo { text-decoration: none; color: inherit; }
.refs--logos .ref { padding: 36px 28px; min-height: 130px; background: #fff; }
.refs-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.refs-pager__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.refs-pager__btn,
.refs-pager__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #d4d4dc;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: #0A0A0F;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(10, 10, 15, .06);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.refs-pager__page { min-width: 44px; padding: 0; }
.refs-pager__btn:hover,
.refs-pager__page:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.refs-pager__btn--disabled {
  pointer-events: none;
  color: #888;
  background: #f0f0f4;
  border-color: #e0e0e8;
}
.refs-pager__page.is-active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  pointer-events: none;
}
.refs-pager__meta {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 14px;
  font-size: .9rem;
  color: #5c5c6a;
}
@media (max-width: 900px) { .refs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .refs { grid-template-columns: repeat(2, 1fr); } }

/* ========== Testimonial ========== */
.testimonial {
  padding: 60px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.testimonial::after {
  content: "“";
  position: absolute;
  top: -40px;
  right: 30px;
  font-family: var(--ff-serif);
  font-size: 16rem;
  line-height: 1;
  color: var(--brand-red);
  opacity: 0.14;
}
.testimonial blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.015em;
  max-width: 900px;
}
.testimonial cite {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink-3);
}
.testimonial cite b { color: var(--ink); font-weight: 500; }

/* ========== News / Articles ========== */
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.article:hover { transform: translateY(-4px); border-color: var(--brand-red); box-shadow: var(--shadow-md); }
.article__cover {
  aspect-ratio: 16/10;
  background:
    radial-gradient(circle at 30% 20%, rgba(228,5,33,0.22), transparent 60%),
    var(--bg-soft);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 3rem;
  color: rgba(228,5,33,0.30);
}
.article__cover.alt-2 { background: radial-gradient(circle at 70% 30%, rgba(228,5,33,0.18), transparent 60%), var(--bg-soft); }
.article__cover.alt-3 { background: radial-gradient(circle at 50% 60%, rgba(228,5,33,0.16), transparent 60%), var(--bg-soft); }

.article__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.article__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-red);
  font-family: var(--ff-display);
  font-weight: 500;
}
.article h4 { margin: 14px 0 12px; font-size: 1.2rem; line-height: 1.25; color: var(--ink); }
.article p { font-size: 0.94rem; flex: 1; color: var(--ink-3); }
.article__date { font-size: 0.82rem; color: var(--ink-4); margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .news { grid-template-columns: 1fr; } }

/* ========== CTA Banner ========== */
.cta {
  background: var(--ink);
  padding: clamp(60px, 8vw, 110px);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(228,5,33,0.30), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(228,5,33,0.18), transparent 40%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; max-width: 900px; margin: 0 auto 24px; }
.cta p { color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 36px; }
.cta__row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta .eyebrow { color: rgba(255,255,255,0.7); }
.cta .eyebrow::before { background: var(--brand-red-soft); }

/* CTA red variant */
.cta--red { background: var(--gx-red); }
.cta--red::before {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.20), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0,0,0,0.25), transparent 40%);
}

/* ========== Footer ========== */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.85);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--footer-line);
}
.footer__brand h3 { font-size: 1.5rem; margin-bottom: 14px; color: #fff; }
.footer__brand p { max-width: 400px; font-size: 0.95rem; color: rgba(255,255,255,0.65); }
.footer__brand img {
  height: 40px;
  margin-bottom: 24px;
  /* Footer dark olduğu için orijinal beyaz logo kullanılır */
}
.footer__col h5 {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--brand-red-soft); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--footer-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
  color: rgba(255,255,255,0.85);
}
.footer__socials a:hover { border-color: var(--brand-red); color: #fff; background: var(--brand-red); }
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== Page Hero (subpages) ========== */
.page-hero {
  padding: 180px 0 80px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(228,5,33,0.10), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,14,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,20,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 90%);
}
.page-hero__inner { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); margin: 24px 0; max-width: 900px; color: var(--ink); }
.page-hero p { max-width: 640px; font-size: 1.1rem; color: var(--ink-3); }
.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.86rem;
  color: var(--ink-3);
}
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink-4); }
.crumbs span.current { color: var(--ink); }

/* ========== Generic Content ========== */
.content { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.content aside { position: sticky; top: 110px; }
.content aside h5 {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.content aside ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.content aside ul a {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.content aside ul a:hover { color: var(--brand-red); }
.content aside ul a.is-active { color: var(--brand-red); }

/* Hizmet kategori sol menü (ana + alt başlıklar) */
.service-sidebar__cats { list-style: none; padding: 0; margin: 0; }
.service-sidebar__cat { border-bottom: 1px solid var(--line); }
.service-sidebar__cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
}
.service-sidebar__cat-link:hover,
.service-sidebar__cat-link.is-active { color: var(--brand-red); }
.service-sidebar__arrow { font-size: 0.85rem; color: var(--ink-4); }
.service-sidebar__cat.is-expanded .service-sidebar__arrow { color: var(--brand-red); }
.service-sidebar__sub {
  padding: 0 0 16px 12px;
  border-left: 2px solid rgba(228, 5, 33, 0.25);
  margin: 0 0 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-sidebar__sub-link {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-3);
  text-decoration: none;
  padding: 4px 0;
}
.service-sidebar__sub-link:hover,
.service-sidebar__sub-link.is-active {
  color: var(--brand-red);
  font-weight: 500;
}
.service-sidebar__cta {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.service-sidebar__cta h5 { margin-bottom: 8px; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.service-sidebar__cta p { font-size: 0.92rem; margin-bottom: 16px; color: var(--ink-3); }
.service-sidebar__cta .btn { font-size: 0.86rem; padding: 10px 18px; }
.service-article__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 10px;
  font-weight: 600;
}
.service-article__title { margin: 0 0 20px; font-size: clamp(1.5rem, 3vw, 2rem); }
.service-article__lead { font-size: 1.12rem; color: var(--ink-2); margin-bottom: 28px; line-height: 1.7; }

.content article p { font-size: 1.06rem; margin-bottom: 18px; line-height: 1.75; color: var(--ink-2); }
.content article h2 { margin: 50px 0 22px; }
.content article h3 { margin: 36px 0 14px; }
.content article ul.checks { margin: 20px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.content article ul.checks li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-2);
}
.content article ul.checks li::before {
  content: "✓";
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(228,5,33,0.10);
  color: var(--brand-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  margin-top: 1px;
  font-weight: 600;
}
.content article ul.checks li b { color: var(--ink); }
@media (max-width: 1024px) {
  .content { grid-template-columns: 1fr; }
  .content aside { position: static; }
}

/* ========== Form ========== */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .full { grid-column: span 2; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-family: var(--ff-display);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(228,5,33,0.10);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field textarea { min-height: 140px; resize: vertical; }
@media (max-width: 640px) {
  .form { grid-template-columns: 1fr; }
  .form .full { grid-column: span 1; }
}

/* ========== Contact ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.contact-card h5 {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-card p { color: var(--ink); font-size: 1.1rem; }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--brand-red); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ========== Team ========== */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.team__card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.team__card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-red);
  box-shadow: var(--shadow-md);
}
.team__avatar {
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 50% 30%, rgba(228,5,33,0.20), transparent 60%),
    var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 4.5rem;
  color: var(--brand-red);
  letter-spacing: -0.02em;
  position: relative;
}
.team__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 70%, rgba(14,14,20,0.06), transparent 50%);
}
.team__body { padding: 28px; }
.team__role {
  font-family: var(--ff-display);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--brand-red);
  text-transform: uppercase;
  font-weight: 500;
}
.team__body h4 { margin: 10px 0 6px; font-size: 1.3rem; color: var(--ink); }
.team__body p { font-size: 0.94rem; color: var(--ink-3); }
.team__social {
  display: flex; gap: 8px; margin-top: 18px;
}
.team__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.team__social a:hover { border-color: var(--brand-red); color: #fff; background: var(--brand-red); }

@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team { grid-template-columns: 1fr; } }

/* ========== FAQ Accordion ========== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.faq__cat button {
  padding: 10px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-family: var(--ff-display);
  color: var(--ink-2);
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.faq__cat button:hover { border-color: var(--ink); }
.faq__cat button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.faq__item {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq__item.is-open { border-color: var(--brand-red); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  font-family: var(--ff-display);
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 500;
  gap: 20px;
}
.faq__q::after {
  content: "+";
  flex: none;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--brand-red);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(228,5,33,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.faq__item.is-open .faq__q::after { content: "−"; transform: rotate(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
  padding: 0 28px;
}
.faq__item.is-open .faq__a {
  max-height: 600px;
  padding: 0 28px 24px;
}
.faq__a p { font-size: 1rem; color: var(--ink-3); line-height: 1.7; }

/* ========== Forms List ========== */
.docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.doc {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.doc:hover {
  border-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.doc__icon {
  flex: none;
  width: 56px; height: 56px;
  background: rgba(228,5,33,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-red);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.doc__body { flex: 1; }
.doc__body h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.doc__body span { font-size: 0.84rem; color: var(--ink-4); }
.doc__cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.86rem;
  color: var(--ink);
  border: 1px solid var(--line-2);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.doc:hover .doc__cta { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }
@media (max-width: 700px) {
  .docs { grid-template-columns: 1fr; }
  .doc { flex-wrap: wrap; }
  .doc__cta { width: 100%; justify-content: center; }
}

/* ========== Links list ========== */
.links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.link-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.link-card:hover {
  border-color: var(--brand-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.link-card__cat {
  font-family: var(--ff-display);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-red);
  font-weight: 500;
}
.link-card h4 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.3;
}
.link-card p { font-size: 0.92rem; color: var(--ink-3); flex: 1; }
.link-card__url {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.link-card__url span {
  font-family: var(--ff-display);
  font-size: 0.84rem;
  color: var(--ink-3);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.link-card__url svg {
  flex: none;
  color: var(--ink-4);
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.link-card:hover .link-card__url svg {
  color: var(--brand-red);
  transform: translate(2px, -2px);
}
@media (max-width: 900px) { .links { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .links { grid-template-columns: 1fr; } }

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ========== Scrollbar ========== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-red); }

/* ========== Utility ========== */
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__title .word > span { transform: none; }
}
