@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #1565C0;        /* Ana mavi */
  --primary-dark: #0D47A1;
  --accent: #F97316;         /* CTA turuncu */
  --white: #FFFFFF;
  --bg-light: #F8F9FA;
  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;
  --border: #E5E7EB;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --whatsapp: #25D366;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* YENİ EKLE */
  --success: #10B981;        /* Yeşil (başarı) */
  --warning: #F59E0B;        /* Sarı (uyarı) */
  --danger: #EF4444;         /* Kırmızı (hata) */
  --info: #3B82F6;           /* İnfo mavi */
  
  /* Neutral tones */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Global Focus Visible — Accessibility */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip Link — Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* H1: Hero/Main Page Title */
h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* H2: Section Titles */
h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xl);
}

/* H3: Subsection Titles */
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

/* Body Text */
p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

/* Small Text */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Spacing */
.section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.logo-text .brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--primary);
}

/* Aktif sayfa alt çizgisi */
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: var(--radius-pill);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* FOOTER */
.footer {
  background-color: #121824; /* Premium Koyu Gri */
  color: var(--white);
  padding: 80px 0 30px 0;
  border-radius: 0; /* Köşelerde radius yok */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr; /* 3 sütunlu yapı */
  gap: 40px;
  margin-bottom: 60px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  color: #9CA3AF;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
  border-radius: var(--radius-pill);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  color: #9CA3AF;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #9CA3AF;
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #9CA3AF;
}

/* WHATSAPP FLOAT BUTTON & CHAT WIDGET JOINT STYLING */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse; /* Üst üste butonlar için */
  align-items: center;
  gap: 16px;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium nabız/dalga efekti */
.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.5);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-tooltip {
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  pointer-events: none;
  opacity: 0;
  position: absolute;
  right: 76px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1; /* tooltip görünürlüğü */
}

.whatsapp-btn:hover + .whatsapp-tooltip,
.whatsapp-tooltip:hover {
  opacity: 1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}


/* RESPONSIVE LAYOUTS */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Mobil Sticky CTA Bar */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0D47A1, #1565C0);
    z-index: 9998;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  }
  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
  }
  .mobile-cta-bar a:first-child {
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .mobile-cta-bar a.cta-whatsapp {
    background: #25D366;
  }
  /* WhatsApp widget'ı sticky bar'ın üstüne çıkması için */
  .whatsapp-widget {
    bottom: 80px;
  }
  body {
    padding-bottom: 56px;
  }

  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
    transition: var(--transition);
    border-top: 1px solid var(--border);
    z-index: 1000;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
    width: 100%;
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  .nav-actions {
    display: none; /* Mobilde hamburger içinde veya gizli */
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* PREMIUM FULL SCREEN HERO */
.hero-fullscreen {
  position: relative;
  width: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(13, 27, 56, 0.88) 0%, rgba(13, 27, 56, 0.6) 100%);
  z-index: 2;
}

.hero-fullscreen .container {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-content-wrap {
  max-width: 650px;
  text-align: left;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(21, 101, 192, 0.25);
  border: 1px solid rgba(21, 101, 192, 0.4);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge-premium svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow-left {
  left: 24px;
}

.slider-arrow-right {
  right: 24px;
}

@media (max-width: 768px) {
  .hero-fullscreen {
    min-height: 500px;
    text-align: center;
  }
  .hero-content-wrap {
    margin: 0 auto;
  }
  .slider-arrow {
    display: none; /* Mobilde okları gizle */
  }
}

/* =========================================
   PRINT CSS (YAZICI DOSTU TASARIM)
   ========================================= */
@media print {
  /* Gereksiz UI elemanlarini gizle */
  .navbar, .footer, .whatsapp-widget, .slider-arrow, .btn, .hamburger {
    display: none !important;
  }
  body {
    background-color: #fff !important;
    color: #000 !important;
  }
  .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  /* Renkleri ve golgeleri sifirla */
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  /* Cikti esnasinda sayfa kirilmalarini engelle */
  .card, .section {
    page-break-inside: avoid;
  }
}
/* --- PREMIUM STATS SECTION --- */
.stats-premium-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg, 24px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06), 0 2px 10px rgba(0,0,0,0.03);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
  margin-top: 0;
  margin-bottom: 40px;
  border: 1px solid rgba(0,0,0,0.04);
}

.stat-premium-card {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.stat-premium-card:hover {
  transform: translateY(-5px);
}

.stat-premium-card .stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s, color 0.3s;
}

.stat-premium-card:hover .stat-icon {
  background: var(--primary);
  color: #fff;
}

.stat-premium-card .stat-icon svg {
  width: 32px;
  height: 32px;
}

.stat-premium-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.stat-premium-card .stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

@media (max-width: 992px) {
  .stat-divider {
    display: none;
  }
  .stats-premium-wrapper {
    gap: 30px;
    margin-top: 20px; /* Mobilde uste binmeyi kaldir */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
}

/* --- INTERACTIVE SERVICE CARDS --- */
.service-card-interactive {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-interactive:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37,99,235,0.1), 0 10px 25px rgba(0,0,0,0.04);
  border-color: rgba(37,99,235,0.25);
}

.service-card-interactive .service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.08), rgba(96, 165, 250, 0.04));
  border: 1.5px solid rgba(21, 101, 192, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card-interactive:hover .service-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: var(--white);
}

.service-card-interactive .service-icon-wrap svg {
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-card-interactive:hover .service-icon-wrap svg {
  color: var(--white);
}

.service-card-interactive h3 {
  transition: color 0.3s ease;
}

.service-card-interactive:hover h3 {
  color: var(--primary);
}

.service-card-interactive .btn-outline-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid rgba(37,99,235,0.3);
  border-radius: 50px;
  transition: all 0.25s;
  align-self: flex-start;
  margin-top: auto;
}

.service-card-interactive:hover .btn-outline-action {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* --- PROCESS FLOW --- */
.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step-card {
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(37,99,235,0.2);
}

.process-step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.2);
}

.process-step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.process-line {
  position: absolute;
  top: 65px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 10px, transparent 10px, transparent 20px);
  z-index: 1;
}

@media (max-width: 992px) {
  .process-flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .process-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .process-flow-grid {
    grid-template-columns: 1fr;
  }
}

/* --- PREMIUM PRICING TABLE --- */
.pricing-table-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  max-width: 950px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
}

.pricing-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) {
  background-color: var(--gray-50);
}

.pricing-table tr:hover {
  background-color: rgba(21, 101, 192, 0.02);
}

.pricing-service-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.pricing-service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-service-price {
  text-align: center;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.15rem;
}

.pricing-service-price.free {
  color: var(--success);
}

/* ===== MARKA KAYAN BANNER (MARQUEE) ===== */
.brands-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Kenar solma efekti */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.brands-marquee-wrapper:hover .brands-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-logo-card {
  flex-shrink: 0;
  width: 160px;
  height: 84px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.brand-logo-card:hover {
  box-shadow: 0 8px 24px rgba(37,99,235,0.12);
  transform: translateY(-3px);
}

.brand-logo-card img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Hakkimizda bolumu responsive */
@media (max-width: 768px) {
  .brands-marquee-track {
    animation-duration: 18s;
  }
  .brand-logo-card {
    width: 130px;
    height: 72px;
  }
}

/* Hakkimizda Ozet Yeni Stiller */
.about-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.about-stat-mini-card {
  text-align: center;
  padding: 20px 12px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.about-summary-visual {
  position: relative;
}

.about-badge-left {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  z-index: 10;
}

.about-badge-right {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--primary);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(37,99,235,0.35);
  text-align: center;
  min-width: 100px;
  z-index: 10;
}

@media (max-width: 992px) {
  .about-summary-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-summary-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-summary-visual {
    margin-top: 20px;
  }
  .about-badge-left {
    bottom: -10px;
    left: -10px;
    padding: 12px 16px;
    min-width: 160px;
  }
  .about-badge-right {
    top: -10px;
    right: -10px;
    padding: 10px 14px;
  }
}

/* Reduced Motion Support — Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide {
    transition: none !important;
  }
}
