/* ================================================
   NET MEDYA AJANS - Ana Stil Dosyası
   Renk Paleti: Kırmızı #C41E3A | Siyah #0A0A0A | Koyu Gri #1A1A2E | Beyaz #F8F9FA
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* ─── CSS Variables ─────────────────────────────── */
:root {
  --red:         #C41E3A;
  --red-dark:    #8B0000;
  --red-light:   #E53E5B;
  --red-glow:    rgba(196, 30, 58, 0.3);
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-2:      #1A1A1A;
  --dark-3:      #222222;
  --dark-card:   #161616;
  --gray:        #2A2A2A;
  --gray-light:  #444444;
  --border:      rgba(255,255,255,0.08);
  --border-red:  rgba(196, 30, 58, 0.4);
  --text-white:  #FFFFFF;
  --text-light:  #E0E0E0;
  --text-muted:  #999999;
  --text-dim:    #666666;
  --bg-body:     #0A0A0A;
  --bg-section:  #111111;
  --bg-alt:      #0D0D0D;
  --font-main:   'Inter', sans-serif;
  --font-heading:'Montserrat', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-red:  0 8px 32px rgba(196, 30, 58, 0.35);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Page transition overlay */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--red);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}
.page-transition.enter { animation: pageIn 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards; }
.page-transition.exit  { animation: pageOut 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards; }
@keyframes pageIn  { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }
@keyframes pageOut { from { transform: scaleY(1); transform-origin: top; } to { transform: scaleY(0); } }

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

/* ─── Typography ────────────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.section-title span { color: var(--red); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  display: block;
}

/* ─── Layout ────────────────────────────────────── */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-dark  { background: var(--dark); }
.section-black { background: var(--bg-body); }
.section-alt   { background: var(--bg-alt); }

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: var(--transition);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,30,58,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(196,30,58,0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-light);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20B558;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

/* Ripple effect */
.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255,255,255,0.3);
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ─── Header ────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img {
  height: 64px;
  width: auto;
  transition: var(--transition);
}
.site-header.scrolled .site-logo img { height: 52px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.5rem; }

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
}
.lang-switcher:hover {
  background: rgba(196,30,58,0.15);
  border-color: var(--border-red);
  color: var(--red);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: var(--transition-fast);
  border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 80px 24px 24px;
}
.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 24px;
  width: 100%;
  text-align: center;
}
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* ─── Hero Section ──────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* WebGL Canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.75) 0%,
    rgba(139,0,0,0.15) 50%,
    rgba(10,10,10,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,30,58,0.15);
  border: 1px solid rgba(196,30,58,0.4);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-title .highlight {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 3px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero-stat {
  background: rgba(10,10,10,0.7);
  padding: 1.5rem 2rem;
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  margin-top: -8px;
}
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ─── Services Carousel ─────────────────────────── */
.services-section { background: var(--dark); overflow: hidden; }

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding-bottom: 8px;
}

.service-card {
  flex: 0 0 320px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,30,58,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-red);
  box-shadow: 0 20px 60px rgba(196,30,58,0.2);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(196,30,58,0.1);
  border: 1px solid rgba(196,30,58,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  color: var(--red);
}

.service-card:hover .service-icon-wrap {
  background: rgba(196,30,58,0.2);
  border-color: var(--red);
  transform: scale(1.05) rotate(-3deg);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition-fast);
}

.service-card-link:hover {
  gap: 10px;
  color: var(--red-light);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray);
  transition: var(--transition-fast);
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--red);
}

.carousel-btns {
  display: flex;
  gap: 0.75rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}

/* ─── Why Us ─────────────────────────────────────── */
.why-section { background: var(--bg-body); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.why-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(196,30,58,0.06);
  font-family: var(--font-heading);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(196,30,58,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-white);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Sector / TKU ──────────────────────────────── */
.sector-section {
  background: linear-gradient(135deg, var(--dark) 0%, #0D0A0A 100%);
  overflow: hidden;
}

.sector-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sector-visual {
  position: relative;
}

.tku-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.tku-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light), var(--red));
}

.tku-logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.tku-logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-heading);
}

.tku-logo-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}
.tku-logo-text span {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 500;
}

.tku-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tku-stat {
  background: rgba(196,30,58,0.06);
  border: 1px solid rgba(196,30,58,0.15);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.tku-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  font-family: var(--font-heading);
}

.tku-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sector Tags */
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,30,58,0.08);
  border: 1px solid rgba(196,30,58,0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.sector-tag:hover {
  background: rgba(196,30,58,0.18);
  border-color: var(--red);
  color: #fff;
}

.sector-tag svg { color: var(--red); }

/* ─── Projects Grid ─────────────────────────────── */
.projects-section { background: var(--dark); }

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  group: true;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: 0 24px 60px rgba(196,30,58,0.2);
}

.project-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray);
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img img { transform: scale(1.06); }

.project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-img-overlay { opacity: 1; }

.project-body,
.project-info {
  padding: 1.5rem;
}

.project-info h3,
.project-info .project-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.project-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.project-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.project-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.project-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.project-client {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.project-client img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.project-client-name {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── Blog Grid ─────────────────────────────────── */
.blog-section { background: var(--bg-body); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: 0 20px 50px rgba(196,30,58,0.15);
}

.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray);
  position: relative;
}

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

.blog-card:hover .blog-img img { transform: scale(1.04); }

.blog-cat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
}

.blog-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }

.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}
.blog-read-more:hover { gap: 10px; color: var(--red-light); }

/* ─── FAQ ───────────────────────────────────────── */
.faq-section { background: var(--dark); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(196,30,58,0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover { color: #fff; }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(196,30,58,0.1);
  border: 1px solid rgba(196,30,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: var(--transition-fast);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CTA Section ───────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0D0000 0%, #1A0000 50%, var(--red-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,30,58,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,30,58,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,30,58,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

.cta-section .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-section .section-subtitle {
  font-size: 1.1rem;
  margin: 0 auto 2.5rem;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Contact ───────────────────────────────────── */
.contact-section { background: var(--bg-body); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: var(--transition-fast);
}
.contact-info-item:hover { border-color: var(--border-red); }

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(196,30,58,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.contact-info-item h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-white);
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--red); }

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.1);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-white);
  font-size: 0.92rem;
  font-family: inherit;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--red);
  background: rgba(196,30,58,0.04);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.12);
}

.form-control::placeholder { color: var(--text-dim); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.honeypot { display: none !important; }

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
.form-message.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.form-message.error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }

/* ─── Footer ────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 60px;
}

.footer-brand .site-logo img { height: 44px; margin-bottom: 1.25rem; }

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.footer-link:hover { color: var(--red); gap: 10px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.footer-contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--red); }

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  padding: 12px 14px;
  color: var(--text-white);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-dim); }

.newsletter-btn {
  padding: 12px 18px;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--red-light); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--red); }

/* ─── WhatsApp Float ────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsapp-pulse 3s infinite;
  color: #fff;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

@keyframes whatsapp-pulse {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.1); }
}

.whatsapp-tooltip {
  background: rgba(10,10,10,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: rgba(196,30,58,0.2);
  border: 1px solid rgba(196,30,58,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-fast);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ─── Scroll Animations ─────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="left"]  { transform: translateX(-40px); }
[data-animate="right"] { transform: translateX(40px); }
[data-animate="up"]    { transform: translateY(40px); }
[data-animate="scale"] { transform: scale(0.9); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Text fill animation */
.text-fill {
  background: linear-gradient(90deg, var(--text-white) 0%, var(--red) 50%, var(--text-white) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-fill.animated {
  animation: textFill 1.5s ease forwards;
}

@keyframes textFill {
  from { background-position: 100%; }
  to   { background-position: 0%; }
}

/* ─── Counter Animation ─────────────────────────── */
.counter { display: inline-block; }

/* ─── Utility ───────────────────────────────────── */
.text-red    { color: var(--red); }
.text-white  { color: #fff; }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.fw-bold     { font-weight: 700; }
.fw-black    { font-weight: 900; }
.d-flex      { display: flex; }
.align-center{ align-items: center; }
.gap-1       { gap: 0.5rem; }
.gap-2       { gap: 1rem; }
.mt-1        { margin-top: 0.5rem; }
.mt-2        { margin-top: 1rem; }
.mt-3        { margin-top: 2rem; }
.mb-1        { margin-bottom: 0.5rem; }
.mb-2        { margin-bottom: 1rem; }
.mb-3        { margin-bottom: 2rem; }

.tag {
  display: inline-block;
  background: rgba(196,30,58,0.1);
  border: 1px solid rgba(196,30,58,0.2);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ─── Animations ────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Page Hero (iç sayfa başlık bandı) ─────────── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A0000 100%);
  position: relative;
  overflow: hidden;
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1100px) {
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .projects-grid       { grid-template-columns: repeat(2, 1fr); }
  .blog-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sector-layout       { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .faq-layout          { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  /* Yatay taşmayı engelle */
  html, body { overflow-x: hidden; }

  /* translateX animasyonları mobilde yatay kayma yapar — dikey yap */
  [data-animate="left"],
  [data-animate="right"] { transform: translateY(30px); }

  /* Grid hücreleri min-width:0 olmadan 1fr içeriği taşırır */
  .sector-layout > * { min-width: 0; }

  /* Sektör butonları yan yana sığmıyor — dikey stack */
  .sector-section .d-flex { flex-direction: column; gap: 0.75rem; }
  .sector-section .d-flex .btn { width: 100%; justify-content: center; }

  /* TKU kart */
  .tku-card { padding: 1.5rem; max-width: 480px; margin: 0 auto; }
  .tku-card::before { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .sector-layout > div:last-child { display: flex; justify-content: center; }

  section { padding: 60px 0; }

  /* Header */
  .main-nav                { display: none; }
  .header-actions .btn     { display: none; }
  .menu-toggle             { display: flex; }
  .lang-switcher           { display: flex; }
  .site-logo img           { height: 48px; max-width: 170px; object-fit: contain; }
  .site-header.scrolled .site-logo img { height: 40px; }

  /* TKU kart */
  .tku-logo-area { flex-wrap: wrap; }
  .tku-logo-text span { font-size: 0.72rem; }
  .tku-stats { gap: 0.75rem; }
  .tku-stat-num { font-size: 1.3rem; }

  /* Hero */
  .page-hero     { padding: 120px 0 50px; }
  .hero-stats    { display: none; }
  .hero-content  { padding: 0 0 60px; }
  .hero-title    { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-badge    { font-size: 0.7rem; padding: 6px 14px; letter-spacing: 0.5px; }

  /* Grids — min-width:0 zorunlu, yoksa 1fr içeriği taşırır */
  .why-grid > *, .projects-grid > *, .blog-grid > *,
  .contact-layout > *, .faq-layout > *, .footer-grid > * { min-width: 0; }

  .why-grid        { grid-template-columns: 1fr; }
  .projects-grid   { grid-template-columns: 1fr; }
  .blog-grid       { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; gap: 2rem; }
  .faq-layout      { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .form-row        { grid-template-columns: 1fr; }

  /* Footer */
  .footer-bottom       { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-bottom-links { justify-content: center; }
  .footer-desc         { max-width: 100%; }

  /* Services carousel */
  .service-card      { flex: 0 0 260px; }
  .carousel-wrapper  { margin: 0 -16px; padding: 0 16px; }

  /* Contact form */
  .contact-form-wrap { padding: 1.5rem; }

  /* Section header */
  .section-header { margin-bottom: 2rem; }

  /* CTA */
  .cta-section { padding: 70px 0; }

  /* FAQ */
  .faq-question    { padding: 1rem 1.25rem; font-size: 0.9rem; }
  .faq-answer-inner{ padding: 0 1.25rem 1rem; }

  /* Newsletter form dikey hale getir */
  .newsletter-form   { flex-direction: column; border-radius: var(--radius); overflow: visible; border: none; gap: 0; }
  .newsletter-input  { border: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; border-bottom: none; }
  .newsletter-btn    { border-radius: 0 0 var(--radius) var(--radius); padding: 12px; text-align: center; }

  /* WhatsApp & Back-to-top */
  .whatsapp-float { bottom: 20px; right: 16px; }
  .back-to-top    { right: 16px; bottom: 88px; }
  .whatsapp-btn   { width: 52px; height: 52px; }

  /* Social links */
  .social-links { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  section { padding: 50px 0; }

  /* Butonlar tam genişlik */
  .hero-buttons             { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn        { width: 100%; justify-content: center; }
  .cta-buttons              { flex-direction: column; align-items: center; }
  .cta-buttons .btn         { width: 100%; max-width: 320px; justify-content: center; }

  /* Başlıklar */
  .section-title            { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .cta-section .section-title{ font-size: clamp(1.5rem, 6vw, 2rem); }
  .eyebrow                  { font-size: 0.7rem; letter-spacing: 1.5px; }

  /* Service card */
  .service-card             { flex: 0 0 calc(100vw - 32px); }

  /* Contact form */
  .contact-form-wrap        { padding: 1.25rem; border-radius: var(--radius); }

  /* Proje filtre */
  .projects-filter          { gap: 0.4rem; }
  .filter-btn               { padding: 6px 12px; font-size: 0.78rem; }

  /* Blog meta */
  .blog-meta                { flex-wrap: wrap; gap: 0.4rem; }

  /* Footer bottom */
  .footer-bottom-links      { flex-direction: column; gap: 0.5rem; align-items: center; }

  /* Hero */
  .page-hero     { padding: 100px 0 40px; }
  .hero-title               { font-size: clamp(1.6rem, 8vw, 2.2rem); letter-spacing: -0.5px; }

  /* WhatsApp tooltip gizle */
  .whatsapp-tooltip         { display: none; }

  /* FAQ */
  .faq-question             { font-size: 0.85rem; }

  /* Sector tags */
  .sector-tags              { gap: 0.5rem; }
  .sector-tag               { font-size: 0.78rem; padding: 6px 12px; }
}

/* ─── Rich Content (Hizmet & Blog İçeriği) ─── */
.rich-content h2, .blog-content h2 {
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-light); margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(196,30,58,0.3);
}
.rich-content h3, .blog-content h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-light); margin: 1.5rem 0 0.75rem;
}
.rich-content h4, .blog-content h4 {
  font-size: 1rem; font-weight: 600;
  color: var(--text-light); margin: 1.25rem 0 0.5rem;
}
.rich-content p, .blog-content p {
  margin-bottom: 1rem; line-height: 1.85;
  color: var(--text-muted);
}
.rich-content ul, .rich-content ol,
.blog-content ul, .blog-content ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.rich-content li, .blog-content li {
  color: var(--text-muted); line-height: 1.7;
  padding-left: 0.25rem;
}
.rich-content ul li::marker, .blog-content ul li::marker { color: var(--red); }
.rich-content ol li::marker, .blog-content ol li::marker { color: var(--red); font-weight: 700; }
.rich-content strong, .blog-content strong {
  color: var(--text-light); font-weight: 600;
}
.rich-content a, .blog-content a {
  color: var(--red); text-decoration: underline;
  text-underline-offset: 3px;
}
.rich-content a:hover, .blog-content a:hover { color: var(--red-light); }
.rich-content table, .blog-content table {
  width: 100%; border-collapse: collapse;
  margin: 1.25rem 0; font-size: 0.9rem;
}
.rich-content th, .blog-content th {
  background: rgba(196,30,58,0.12);
  color: var(--text-light); font-weight: 600;
  padding: 0.6rem 1rem; text-align: left;
  border: 1px solid var(--border);
}
.rich-content td, .blog-content td {
  padding: 0.6rem 1rem; border: 1px solid var(--border);
  color: var(--text-muted);
}
.rich-content tr:nth-child(even) td, .blog-content tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

/* ─── BRAND LOGO SLIDER ────────────────────────────── */
.brand-slider-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  margin-top: 3rem;
}
.brand-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: brandScroll 30s linear infinite;
}
.brand-slider-track:hover { animation-play-state: paused; }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-slide { flex-shrink: 0; }
.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, filter 0.25s, opacity 0.25s;
  filter: grayscale(100%);
  opacity: 0.55;
}
.brand-logo-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  filter: grayscale(0%);
  opacity: 1;
}
.brand-logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}
.brand-logo-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
