/**
 * Alanya Yazılımcı - Pixel-Perfect Dark Theme & Neon Red Design System
 * %100 Saf CSS · Zero Framework · 100/100 Core Web Vitals Uyumlu
 * Hedef Tasarıma ("Hazır" Görseli) Birebir Sadık
 *
 * @author Alanya Yazılımcı Mimari Ekibi
 * @version 4.2.0 — Pixel-Perfect Final
 */

/* ==========================================================================
   1. DESIGN TOKENS & CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0c;
  --bg-tertiary: #121216;
  --bg-card: #0c0c0e;
  --bg-card-hover: #141418;
  --bg-card-light: #ffffff;
  --bg-outer-card: #18181c;

  --accent-red: #ff1e1e;
  --accent-red-glow: rgba(255, 30, 30, 0.2);
  --accent-red-subtle: rgba(255, 30, 30, 0.1);
  --accent-red-dark: #b80d0d;
  --accent-gradient: linear-gradient(135deg, #ff2a2a 0%, #d60000 100%);
  --accent-gradient-text: linear-gradient(90deg, #ff2a2a 0%, #ff7373 100%);

  --text-primary: #ffffff;
  --text-secondary: #9e9ea7;
  --text-muted: #6b6b76;
  --text-dark: #0a0a0c;
  --text-dark-secondary: #555560;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-red: rgba(255, 30, 30, 0.3);
  --border-red-active: rgba(255, 30, 30, 0.8);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 35px var(--accent-red-glow);
  --shadow-glow-strong: 0 0 50px rgba(255, 30, 30, 0.4);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1200px;
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: #000000;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255, 30, 30, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 80% 50%, rgba(255, 30, 30, 0.04) 0%, transparent 50%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ==========================================================================
   KALICI YATAY TAŞMA KORUMASI (Tüm Sayfalar ve Bölümler)
   ========================================================================== */
header,
main,
footer,
section,
.site-header,
.hero-section,
.manifesto-section,
.digital-services-section,
.services-page-hero,
.section-spacer,
.bento-tier-top,
.bento-tier-middle,
.bento-tier-bottom {
  max-width: 100%;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  max-width: 48px;
  max-height: 48px;
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 3px;
}

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-spacer {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-spacer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-header-left {
  margin-bottom: 48px;
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.section-title-xl {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 540px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.text-gradient-red {
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.text-accent-red {
  color: var(--accent-red);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 30, 30, 0.08);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: #ff6b6b;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red);
}

.card-tag-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-red);
  margin-bottom: 12px;
}


/* ==========================================================================
   BREADCRUMB & MOBILE DRAWER BASE STYLES
   ========================================================================== */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb-nav a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: #ff5555;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  user-select: none;
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 600;
}

.mobile-nav-backdrop {
  display: none;
}

.btn-mobile-nav-cta {
  display: none;
}

/* ==========================================================================
   4. HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  transition: top var(--transition-fast);
}

.site-header.scrolled {
  top: 10px;
}

.nav-pill-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  background: rgba(13, 13, 16, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 8px 12px 8px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  transition: border-color var(--transition-smooth);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  white-space: nowrap;
}

.brand-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--accent-red-glow);
  color: #fff;
  flex-shrink: 0;
}

.brand-icon-wrap svg { width: 16px; height: 16px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-red);
  color: #ff8585;
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 20px var(--accent-red-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-header-cta svg { width: 14px; height: 14px; }

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-strong);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* ==========================================================================
   PREMIUM MOBILE DESIGN SYSTEM (320px - 767px & <= 900px Viewports)
   ========================================================================== */

@media (max-width: 900px) {
  /* Global Container & Box Sizing */
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  /* Header & Navigation */
  .site-header {
    position: fixed;
    top: 12px;
    left: 14px;
    right: 14px;
    padding: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .site-header.scrolled {
    top: 8px;
  }

  .nav-pill-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 58px;
    padding: 6px 10px 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(12, 12, 16, 0.94);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
  }

  .brand-logo {
    font-size: 14.5px;
    font-weight: 700;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .brand-icon-wrap {
    width: 28px;
    height: 28px;
    box-shadow: 0 0 12px var(--accent-red-glow);
  }

  .brand-icon-wrap svg {
    width: 14px;
    height: 14px;
  }

  .header-right-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .header-right-actions .btn-header-cta {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    gap: 5px;
    box-sizing: border-box;
    transition: all 0.25s ease;
  }

  .mobile-toggle:hover,
  .mobile-toggle:active,
  .mobile-toggle.active {
    background: rgba(255, 30, 30, 0.15);
    border-color: rgba(255, 30, 30, 0.4);
  }

  .mobile-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #ff4a4a;
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #ff4a4a;
  }

  /* Sleek Minimal Mobile Drawer */
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    background: rgba(10, 10, 14, 0.97);
    backdrop-filter: blur(28px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
    border: 1px solid rgba(255, 30, 30, 0.25);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 30, 30, 0.18);
    padding: 20px 16px 22px;
    gap: 6px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    box-sizing: border-box;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.28s;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .main-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link:active {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transform: translateX(4px);
  }

  .main-nav .nav-link.active {
    background: rgba(255, 30, 30, 0.12);
    border-color: rgba(255, 30, 30, 0.35);
    color: #ff5555;
    box-shadow: 0 0 16px rgba(255, 30, 30, 0.15);
  }

  .btn-mobile-nav-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    margin-top: 12px;
    background: var(--accent-gradient);
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 0 24px var(--accent-red-glow);
    text-decoration: none;
    box-sizing: border-box;
    transition: transform 0.2s ease;
  }

  .btn-mobile-nav-cta:active {
    transform: scale(0.98);
  }

  .btn-mobile-nav-cta svg {
    width: 16px;
    height: 16px;
  }

  /* Section Spacing Standardized (56px - 72px) */
  .section-spacer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-header-center {
    margin-bottom: 36px;
    padding-inline: 0;
  }

  /* Hero Section Typography & Balanced Breaks */
  .hero-section {
    padding-top: 104px;
    padding-bottom: 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
    text-wrap: balance;
  }

  .hero-title br,
  .section-title-xl br {
    display: inline;
  }

  .hero-title-nowrap {
    white-space: normal;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary-glow,
  .btn-secondary-outline {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    font-size: 15.5px;
    box-sizing: border-box;
  }

  .hero-visual-col {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-wave-canvas-wrap {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  /* Badges & Breadcrumb */
  .badge-pill {
    font-size: 12.5px;
    padding: 7px 15px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .breadcrumb-nav {
    font-size: 13px;
    margin-bottom: 16px !important;
    gap: 4px 6px;
  }

  .section-title-xl {
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }

  .section-subtitle {
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }

  /* Pricing Cards on Mobile */
  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
  }

  .pricing-card {
    width: 100%;
    padding: 26px 20px;
    border-radius: 24px;
    box-sizing: border-box;
  }

  .pricing-amount {
    font-size: clamp(30px, 8vw, 38px);
  }

  .pricing-cta-btn {
    min-height: 50px;
    width: 100%;
    font-size: 15.5px;
    font-weight: 700;
  }

  /* Bento Grids on Mobile */
  .bento-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 16px;
  }

  .bento-card,
  .bento-card-top-left {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    padding: 24px 20px;
    border-radius: 22px;
    min-height: auto;
  }

  /* Digital Services & Blog & Contact */
  .digital-services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .digital-service-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .blog-card {
    border-radius: 20px;
  }

  .single-service-hero,
  .single-blog-hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .single-service-hero .single-blog-title,
  .single-blog-hero .single-blog-title {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.15;
  }

  .contact-page-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .contact-form-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    min-height: 48px;
    font-size: 16px;
    border-radius: 12px;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .contact-submit-btn,
  .form-submit-btn {
    min-height: 50px;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
  }

  .references-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .manifesto-statement {
    font-size: clamp(18px, 4.5vw, 24px);
    line-height: 1.4;
    padding-inline: 10px;
  }
}

/* Extra Small Mobile (<= 375px) */
@media (max-width: 375px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .nav-pill-container {
    height: 54px;
    padding: 5px 8px 5px 12px;
  }

  .brand-logo {
    font-size: 13.5px;
    gap: 7px;
  }

  .brand-icon-wrap {
    width: 26px;
    height: 26px;
  }

  .mobile-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 8px;
  }

  .main-nav {
    top: 70px;
    left: 10px;
    right: 10px;
    padding: 16px 14px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 15px;
  }

  .pricing-card {
    padding: 22px 16px;
  }
}

/* ==========================================================================
   5. HERO SECTION & 3-STAT CARDS
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-text-col {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title-nowrap {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 440px) {
  .hero-title {
    font-size: 24px;
  }
  .hero-title-nowrap {
    white-space: normal;
  }
}

.hero-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 28px var(--accent-red-glow);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary-glow svg { width: 15px; height: 15px; }

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 26px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
}

/* Hero Cyber Wave Visual */
.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-wave-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.86;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(ellipse at 55% 35%, rgba(255, 30, 30, 0.18) 0%, rgba(10, 10, 12, 0.98) 70%);
  border: 1px solid var(--border-subtle);
}

.wave-svg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  pointer-events: none;
}

.wave-glow-orb {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 30, 30, 0.4) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.floating-stat-card {
  position: absolute;
  background: rgba(15, 15, 18, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  max-width: 210px;
  z-index: 3;
}

.floating-stat-card.card-top-right {
  top: 20px;
  right: 20px;
}

.floating-stat-card.card-bottom-left {
  bottom: 20px;
  left: 20px;
}

.stat-metric-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-metric-tag {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
  display: block;
}

/* Hero Altı 3'lü İstatistik Kartları */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .hero-stats-row { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual-col { display: none; }
}

.hero-stat-card {
  background: #0d0d10;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  transition: all var(--transition-fast);
}

.hero-stat-card:hover {
  border-color: var(--border-red);
  transform: translateY(-2px);
}

.stat-card-title {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.stat-card-body {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 14px;
}

.stat-card-val {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
}

.stat-card-subtext {
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   6. MANIFESTO BANNER
   ========================================================================== */
.manifesto-section {
  padding: 70px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(13, 13, 16, 0.3);
}

.manifesto-statement {
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/* ==========================================================================
/* ==========================================================================
   7. BENTO GRID (Pixel-Perfect Reference Match)
   ========================================================================== */

/* TIER 1: Üst Blok (Geniş Sol Kart + Sağ 2 Alt Kart) */
.bento-tier-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .bento-tier-top { grid-template-columns: 1fr; }
}

.bento-card-top-left {
  background: #09090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 38px 38px 30px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.bento-card-top-left:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.bento-top-left-header {
  text-align: center;
  margin-bottom: 24px;
}

.bento-center-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 16px;
}

.bento-center-heading {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.bento-btn-wrap {
  display: flex;
  justify-content: center;
}

.btn-bento-start {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-bento-start:hover {
  background: #f0f0f3;
  transform: translateY(-1px);
}

.bento-img-frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #141418;
}

.bento-img-fit {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.bento-card-top-left:hover .bento-img-fit,
.bento-middle-left:hover .bento-img-fit,
.bento-bottom-left:hover .bento-img-fit {
  transform: scale(1.02);
}

/* Sağ Blok */
.bento-top-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bento-card-stat {
  background: #09090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.bento-card-stat:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.bento-stat-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  text-align: left;
  letter-spacing: -0.02em;
  margin: 0;
}

.bento-stat-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 24px;
}

.rating-stars-white {
  display: flex;
  gap: 4px;
  color: #ffffff;
}

.rating-stars-white svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
}

.bento-big-stat-number {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.bento-card-quote {
  background: #09090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.bento-card-quote:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.bento-quote-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
}

.bento-quote-avatar {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
  background: #141418;
}

.bento-quote-text {
  font-size: 13px;
  color: #9e9ea7;
  line-height: 1.55;
  margin-bottom: 8px;
}

.bento-quote-author {
  font-size: 12px;
  color: #71717a;
}

.bento-quote-author strong {
  color: #ffffff;
}

/* YATAY ORTA AYIRICI ÇİZGİ */
.bento-tier-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 64px 0;
}

/* TIER 2: Orta Split Blok (Dikey Çizgi ve 250+ Büyüme) */
.bento-tier-middle {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .bento-tier-middle {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 56px;
  }
}

.bento-middle-left {
  display: flex;
  flex-direction: column;
}

.bento-tier-heading {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 14px;
}

.bento-tier-subtext {
  font-size: 14px;
  color: #8e8e96;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 24px;
}

.bento-middle-right {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .bento-middle-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-top: 36px;
  }
}

.bento-growth-desc {
  font-size: 14px;
  color: #8e8e96;
  line-height: 1.65;
  max-width: 460px;
}

.bento-growth-bar {
  display: flex;
  width: 190px;
  height: 2px;
  margin: 36px 0 16px 0;
}

.growth-bar-red {
  width: 38%;
  height: 100%;
  background: #e51a24;
}

.growth-bar-grey {
  width: 62%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
}

.bento-growth-label {
  font-size: 11px;
  font-weight: 700;
  color: #a1a1aa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bento-growth-number {
  font-size: clamp(68px, 7.5vw, 96px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* TIER 3: Alt Split Blok */
.bento-tier-bottom {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .bento-tier-bottom {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.bento-bottom-left {
  display: flex;
  flex-direction: column;
}

.bento-bottom-right-card {
  background: #09090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 42px 38px;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.bento-bottom-right-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.bento-card-tier-title {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bento-white-bars-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.bento-white-bar {
  background: #ffffff;
  color: #27272a;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 26px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), background var(--transition-fast);
  cursor: default;
}

.bento-white-bar:hover {
  transform: translateX(4px);
  background: #fafafa;
}

/* Bento Grid Asimetrik Kolon & Genişlik Sınıfları */
.card-large {
  grid-column: span 2;
}

.card-wide {
  grid-column: span 2;
}

.card-tall {
  grid-row: span 2;
}

.card-medium {
  grid-column: span 1;
}

.card-medium-interactive {
  grid-column: span 1;
}

.bento-tier-heading-sm {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 12px;
}

@media (max-width: 960px) {
  .card-large, .card-wide, .card-tall, .card-medium, .card-medium-interactive {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* ==========================================================================
   8. PRICING (Contrast White vs Dark Red)
   ========================================================================== */
.pricing-toggle-inline {
  display: inline-flex;
  align-items: center;
  width: 42px;
  height: 22px;
  background: #2a2a30;
  border-radius: var(--radius-full);
  padding: 2px;
  vertical-align: middle;
  margin: 0 6px;
}

.pricing-toggle-pill {
  width: 18px;
  height: 18px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

@media (min-width: 1024px) {
  .pricing-cards-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-cards-grid.cols-3,
  .pricing-cards-grid.cols-many {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) and (min-width: 681px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 30px 20px;
  }
  .pricing-card-top-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .pricing-price-wrap {
    flex-wrap: wrap;
    gap: 6px;
  }
  .pricing-amount {
    font-size: clamp(28px, 8vw, 38px);
  }
}

.pricing-amount-old {
  text-decoration: line-through;
  opacity: 0.55;
  font-size: 20px;
  font-weight: 700;
  margin-right: 6px;
  color: var(--text-muted);
}

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform var(--transition-smooth);
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pricing-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.pricing-badge-light {
  background: #f0f0f3;
  color: #333339;
}

.pricing-badge-dark {
  background: var(--accent-red-subtle);
  border: 1px solid var(--border-red);
  color: #ff6b6b;
}

.btn-pricing-pill-dark {
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-full);
}

.btn-pricing-pill-white {
  background: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-full);
}

.pricing-card-light {
  background: var(--bg-card-light);
  color: var(--text-dark);
}

.pricing-card-dark {
  background: #0d0d10;
  border: 1px solid var(--border-red);
  box-shadow: var(--shadow-glow);
}

.pricing-plan-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-period {
  font-size: 13px;
  color: var(--text-dark-secondary);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-dark-secondary);
  line-height: 1.55;
  margin-bottom: 30px;
  border-bottom: 1px solid #eaeaee;
  padding-bottom: 24px;
}

.pricing-card-dark .pricing-desc {
  border-bottom-color: var(--border-subtle);
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

@media (max-width: 600px) {
  .pricing-features-grid { grid-template-columns: 1fr; }
}

.feature-item-light, .feature-item-dark {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.feature-item-light { color: #222228; }
.feature-item-light svg { width: 15px; height: 15px; color: #111113; flex-shrink: 0; }

.feature-item-dark { color: #e2e2e8; }
.feature-item-dark svg { width: 15px; height: 15px; color: var(--accent-red); flex-shrink: 0; }

/* ==========================================================================
   9. ROADMAP (Split Layout)
   ========================================================================== */
.roadmap-layout-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .roadmap-layout-split { grid-template-columns: 1fr; }
}

.roadmap-heading {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.roadmap-red-title {
  color: #d81212;
}

.roadmap-white-title {
  color: #ffffff;
}

.slider-arrows-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #141418;
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all var(--transition-fast);
  outline: none;
}

.slider-arrow-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 16px var(--accent-red-glow);
}

.slider-arrow-btn:active {
  transform: scale(0.95);
}

.roadmap-slider-window {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  contain: paint;
  isolation: isolate;
}

.roadmap-cards-col {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.roadmap-card {
  background: #09090c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  flex: 0 0 calc(50% - 10px);
  min-width: calc(50% - 10px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

@media (max-width: 600px) {
  .roadmap-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.roadmap-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.roadmap-step-badge {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #cc1010;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.roadmap-step-badge svg { width: 18px; height: 18px; }

.roadmap-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: -0.01em;
}

.roadmap-step-desc {
  font-size: 13.5px;
  color: #888892;
  line-height: 1.6;
}

.roadmap-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 32px;
}

.roadmap-pill-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  background: #ffffff;
  color: #000000;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.roadmap-step-fraction {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
}

.fraction-current {
  color: rgba(255, 255, 255, 0.35); /* Slashtan önceki rakamın eski rengi */
}

.fraction-slash,
.fraction-total {
  color: #ffffff; /* Slashtan sonraki ve slash rengi */
}

/* ==========================================================================
   10. TESTIMONIALS (Split Layout with Portrait Cards)
   ========================================================================== */
.testimonials-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .testimonials-layout-split { grid-template-columns: 1fr; }
}

.testimonial-text {
  font-size: 15px;
  color: #d1d1d8;
  line-height: 1.65;
}

.testimonial-author-line {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 14px;
}

.testimonials-right-cards {
  display: flex;
  gap: 20px;
}

@media (max-width: 600px) {
  .testimonials-right-cards { flex-direction: column; }
}

.testimonial-portrait-card {
  background: #0d0d10;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 240px;
  justify-content: center;
}

.testimonial-portrait-avatar {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, #ff1e1e 0%, #1a1a22 80%);
  border: 2px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 0 24px var(--accent-red-glow);
}

.testimonial-portrait-info .testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-portrait-info .testimonial-role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ==========================================================================
   11. FAQ ACCORDION (White Cards)
   ========================================================================== */
.faq-accordion-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  background: transparent;
  cursor: pointer;
  gap: 16px;
}

.faq-icon-chevron {
  width: 18px;
  height: 18px;
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon-chevron svg { width: 14px; height: 14px; }

.faq-item.active .faq-icon-chevron {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer-panel {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer-text {
  font-size: 14px;
  color: #4a4a55;
  line-height: 1.65;
  border-top: 1px solid #eaeaee;
  padding-top: 14px;
}

/* ==========================================================================
   12. CONTACT (Outer Grey Container + White Form Card)
   ========================================================================== */
.contact-outer-card {
  background: var(--bg-outer-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px;
}

@media (max-width: 768px) {
  .contact-outer-card { padding: 24px 18px; }
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .contact-layout-grid { grid-template-columns: 1fr; gap: 36px; }
}

.contact-heading {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.contact-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.nap-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nap-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nap-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nap-icon svg { width: 16px; height: 16px; }

.nap-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nap-value {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  display: block;
  margin-top: 2px;
  text-decoration: none;
}

.contact-form-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
}

@media (max-width: 768px) {
  .contact-form-card { padding: 24px 18px; }
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #555560;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f5f5f7;
  border: 1.5px solid #e1e1e6;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #ffffff;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(255, 30, 30, 0.12);
}

.btn-form-submit {
  width: 100%;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-full);
  margin-top: 8px;
  transition: all var(--transition-fast);
}

.btn-form-submit:hover {
  background: var(--accent-red);
}

.form-feedback-msg {
  display: none;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  font-weight: 500;
}

.form-feedback-msg.success {
  display: block;
  background: #e6f9ed;
  color: #127c3d;
  border: 1px solid #b7ecd0;
}

.form-feedback-msg.error {
  display: block;
  background: #fde8e8;
  color: #c81e1e;
  border: 1px solid #f8b4b4;
}

/* ==========================================================================
   13. FOOTER & SOCIAL PILLS
   ========================================================================== */
.site-footer {
  padding-top: 70px;
  padding-bottom: 40px;
  border-top: 1px solid var(--border-subtle);
  background: #000000;
}

.footer-center-block {
  text-align: center;
  margin-bottom: 36px;
}

.footer-brand-emblem {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  color: #ffffff;
}

.footer-brand-emblem svg { width: 22px; height: 22px; }

.footer-slogan {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-local-info {
  font-size: 12px;
  color: var(--text-secondary);
}

.social-pills-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.social-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all var(--transition-fast);
}

.social-pill-btn svg { width: 14px; height: 14px; }

.social-pill-btn:hover {
  background: var(--accent-red);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav-links {
  display: flex;
  gap: 20px;
}

.footer-nav-links a { color: var(--text-muted); }
.footer-nav-links a:hover { color: var(--text-primary); }

@media (max-width: 768px) {
  .footer-bottom-bar { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   14. BLOG & BENTO GRID VİTRİNİ & GLASSMORPHIC OKUMA MİMARİSİ
   ========================================================================== */
.blog-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1080px) {
  .blog-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .blog-bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-bento-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
}

.blog-bento-card:hover {
  border-color: rgba(255, 30, 30, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 30, 30, 0.15), 0 0 25px rgba(255, 30, 30, 0.2);
}

.blog-cover-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #07070a;
}

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

.blog-bento-card:hover .blog-cover-img {
  transform: scale(1.06);
}

.blog-cover-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 30, 30, 0.35);
  color: #ff8585;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.blog-card-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.blog-card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.blog-card-title a:hover {
  color: #ff8585;
  text-shadow: 0 0 12px rgba(255, 30, 30, 0.5);
}

.blog-card-summary {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-red);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.blog-read-link:hover {
  color: #ff8585;
  transform: translateX(4px);
}

/* ==========================================================================
   TEKİL BLOG OKUMA SAYFASI (DEV HERO & GLASSMORPHISM CONTAINER)
   ========================================================================== */
.single-blog-hero {
  padding: 40px 0 20px;
}

.single-blog-header-box {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 36px;
}

.single-blog-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.single-blog-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
}

.single-blog-cover-frame {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 30, 30, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 30, 30, 0.18);
  background: #08080c;
  max-height: 500px;
}

.single-blog-cover-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.single-article-glass-card {
  background: rgba(14, 14, 18, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 56px 50px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  position: relative;
}

@media (max-width: 768px) {
  .single-article-glass-card {
    padding: 32px 22px;
  }
}

.single-article-body {
  font-size: 17px;
  line-height: 1.85;
  color: #d4d4dc;
}

.single-article-body p {
  margin-bottom: 24px;
}

.article-takeaways-box {
  background: rgba(255, 30, 30, 0.05);
  border-left: 3px solid var(--accent-red);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
  font-size: 15px;
  color: #e4e4ec;
}

.article-takeaways-title {
  font-weight: 800;
  color: #ff8585;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.article-author-bio {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255, 30, 30, 0.35);
}

.article-author-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.article-author-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.article-cta-banner {
  background: linear-gradient(135deg, #111116 0%, #1a0809 100%);
  border: 1px solid rgba(255, 30, 30, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.article-cta-title {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
}

.article-cta-desc {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin-top: 4px;
}

/* ==========================================================================
   14. SERVICES PAGE & DIGITAL SERVICES (Asimetrik Bento & 8'li Kart Izgarası)
   ========================================================================== */
.services-page-hero {
  padding: 40px 0 60px 0;
}

.digital-services-section {
  padding: 80px 0 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 80px;
}

.digital-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

@media (max-width: 1080px) {
  .digital-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .digital-services-grid {
    grid-template-columns: 1fr;
  }
}

.digital-service-card {
  background: #09090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.digital-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(229, 26, 36, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.digital-service-card:hover {
  border-color: rgba(229, 26, 36, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(229, 26, 36, 0.14), 0 0 1px rgba(229, 26, 36, 0.6);
}

.digital-service-card:hover::before {
  opacity: 1;
}

.digital-service-top {
  display: flex;
  flex-direction: column;
}

.digital-service-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.digital-service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #cc1010;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(204, 16, 16, 0.4);
  transition: transform var(--transition-fast);
}

.digital-service-card:hover .digital-service-icon-box {
  transform: scale(1.08);
}

.digital-service-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  background: rgba(229, 26, 36, 0.08);
  border: 1px solid rgba(229, 26, 36, 0.22);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.digital-service-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.digital-service-tagline {
  font-size: 12.5px;
  font-weight: 600;
  color: #e51a24;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.digital-service-desc {
  font-size: 14px;
  color: #9494a0;
  line-height: 1.65;
  margin-bottom: 22px;
}

.digital-service-bottom {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.digital-service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 22px;
}

@media (max-width: 480px) {
  .digital-service-features {
    grid-template-columns: 1fr;
  }
}

.digital-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #d1d1d8;
}

.digital-feature-item svg {
  width: 16px;
  height: 16px;
  color: #e51a24;
  flex-shrink: 0;
}

.btn-digital-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  background: #141418;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-digital-action svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-digital-action:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 0 20px var(--accent-red-glow);
}

.btn-digital-action:hover svg {
  transform: translateX(4px);
}

.services-cta-banner {
  background: linear-gradient(135deg, #0f0f14 0%, #160809 100%);
  border: 1px solid rgba(229, 26, 36, 0.25);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.services-cta-content {
  max-width: 650px;
}

.services-cta-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.services-cta-desc {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.6;
}

/* ==========================================================================
   DEDICATED PRICING & CONTACT PAGES
   ========================================================================== */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 960px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-map-container {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 260px;
  background: #111116;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) invert(0.9) contrast(1.2);
}

/* ==========================================================================
   DÜZ HTML SSS BÖLÜMÜ (NON-ACCORDION, SEO/AIO ODAKLI DOĞRUDAN YANITLAR)
   ========================================================================== */
.single-flat-faq-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.flat-faq-header {
  margin-bottom: 32px;
}

.flat-faq-main-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 12px;
}

.flat-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flat-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.flat-faq-item:hover {
  border-color: rgba(255, 30, 30, 0.3);
  background: rgba(255, 255, 255, 0.035);
}

.flat-faq-question {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.flat-faq-answer {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.7;
  margin: 0;
}

.flat-faq-answer strong,
.single-article-body strong {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 30, 30, 0.4);
  text-underline-offset: 3px;
}

/* ==========================================================================
   TEKİL HİZMET DETAY SAYFASI (SERVICE SINGLE)
   ========================================================================== */
.single-service-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}

.service-lead-paragraph {
  font-size: 18px;
  line-height: 1.75;
  color: #d4d4d8;
  margin-bottom: 28px;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.service-feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: #f4f4f6;
  transition: all 0.2s ease;
}

.service-feature-pill:hover {
  background: rgba(255, 30, 30, 0.06);
  border-color: rgba(255, 30, 30, 0.3);
  transform: translateX(4px);
}

.service-feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 30, 30, 0.2);
  color: #ff3333;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.service-tag-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   HAKKIMIZDA & REFERANSLAR (PORTFOLYO) & LIGHTBOX CSS MODÜLÜ
   ========================================================================== */

/* Brand Logo Img */
.brand-logo-img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}
.brand-footer-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Hakkımızda Bölümü */
.about-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(255, 30, 30, 0.04) 0%, transparent 60%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .about-title { font-size: 28px; }
}
.about-text-body p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}
.about-badges-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 10px 0;
}
@media (max-width: 640px) {
  .about-badges-row { grid-template-columns: 1fr; }
}
.about-stat-mini {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
}
.about-stat-mini:hover {
  border-color: rgba(255, 30, 30, 0.3);
  background: rgba(255, 30, 30, 0.04);
  transform: translateY(-2px);
}
.about-stat-num {
  font-size: 24px;
  font-weight: 900;
  color: #ff3333;
}
.about-stat-lbl {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 600;
}
.about-image-col {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0e0e13;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 30, 30, 0.15);
}
.about-img-fit {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.about-glow-orb {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 30, 30, 0.25);
  filter: blur(80px);
  pointer-events: none;
}

/* Referanslar (Portfolyo) Grid ve Kare Kartlar (1:1 Aspect Ratio) */
.references-section {
  position: relative;
}
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .references-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .references-grid { grid-template-columns: 1fr; }
}

.ref-card {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #0d0d12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.ref-card:hover {
  border-color: rgba(255, 30, 30, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -10px rgba(255, 30, 30, 0.25);
}
.ref-card .ref-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ref-card:hover .ref-img {
  transform: scale(1.08);
}
.ref-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 25, 25, 0.90) 0%, rgba(140, 0, 0, 0.94) 100%);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.ref-card:hover .ref-overlay {
  opacity: 1;
.ref-overlay .reference-hover-logo,
.ref-overlay-logo,
.ref-overlay img.ref-logo {
  max-width: 140px;
  max-height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
  display: block;
  transition: transform 0.3s ease;
}
.ref-card:hover .reference-hover-logo,
.ref-card:hover .ref-overlay-logo {
  transform: scale(1.05);
}

.ref-title {
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.ref-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.ref-card:hover .ref-action-pill {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.65);
}

/* Lightbox Modal (JS Görsel & Video Büyütme) */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  position: relative;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: max-width 0.3s ease;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 30, 30, 0.2);
  object-fit: contain;
}

/* Video Modal & Lightbox İframe Desteği */
.lightbox-video-wrap {
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 30, 30, 0.25);
}
.lightbox-content.video-horizontal {
  max-width: 960px;
  width: 92vw;
}
.lightbox-content.video-horizontal .lightbox-video-wrap {
  aspect-ratio: 16 / 9;
}
.lightbox-content.video-vertical {
  max-width: 420px;
  width: 90vw;
}
.lightbox-content.video-vertical .lightbox-video-wrap {
  aspect-ratio: 9 / 16;
  max-height: 80vh;
}
.lightbox-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.lightbox-caption {
  margin-top: 16px;
  color: #f8fafc;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.lightbox-close:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
  transform: rotate(90deg);
}


