* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FFC107;
  --primary-dark: #FFC107;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border: #2a2a2a;
  --success: #22c55e;
  --danger: #ef4444;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 140;
  padding: 0;
  pointer-events: none;
}

.scroll-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #ffd54f, var(--primary));
  box-shadow: 0 0 16px rgba(255, 193, 7, 0.4);
  transition: width 0.12s linear;
}

.scroll-progress-label {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation - Stitch */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 13, 16, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #2a2d36;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  padding: 0 1rem;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 0 2.5rem;
  }
}

.logo,
.logo-stitch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-image {
  display: block;
  height: 2.2rem;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.logo-icon-box {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #15161a;
  border: 1px solid #2a2d36;
  border-radius: 0.25rem;
  color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.logo-icon-box .material-symbols-outlined {
  font-size: 1.25rem;
}

.logo-text-stitch {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.logo-text-accent {
  color: var(--primary);
}

@media (max-width: 640px) {
  .logo-image {
    max-width: 180px;
  }
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.25rem;
  margin-left: 1rem;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-links-wrap::-webkit-scrollbar {
  display: none;
}

.nav-item {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-item-active,
.nav-item.nav-item-active {
  background: rgba(255, 193, 7, 0.1);
  color: var(--primary);
  border-color: rgba(255, 193, 7, 0.2);
}

.nav-item-icon {
  font-size: 1.125rem;
}

.nav-item-label {
  display: none;
}

@media (min-width: 768px) {
  .nav-item-label {
    display: inline;
  }
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 0.25rem;
  background: var(--primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.15);
  transition: background 0.2s;
}

.nav-cta-btn:hover {
  background: #FFC107;
  color: #000;
}

.nav-cta-icon {
  font-size: 1rem;
}

.nav-mobile-actions,
.mobile-nav-backdrop,
.mobile-nav-drawer {
  display: none;
}

@media (min-width: 1024px) {
  .nav-container {
    gap: 0.35rem;
  }

  .logo-image {
    max-width: 205px;
  }

  .nav-links-wrap {
    gap: 0.125rem;
    margin-left: 0.75rem;
    justify-content: center;
  }

  .nav-item {
    gap: 0.4rem;
    padding: 0.45rem 0.62rem;
    font-size: 0.82rem;
  }

  .nav-item-icon {
    font-size: 1rem;
  }

  .nav-cta-btn {
    padding: 0.375rem 0.9rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 1023px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .nav-container {
    height: 4.25rem;
    gap: 0.75rem;
  }

  .nav-links-wrap,
  .nav-cta-btn {
    display: none;
  }

  .nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-left: auto;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0 0.95rem;
    border-radius: 0.7rem;
    background: rgba(255, 193, 7, 0.14);
    border: 1px solid rgba(255, 193, 7, 0.28);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .nav-menu-toggle,
  .mobile-nav-close {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.8rem;
    background: rgba(21, 22, 26, 0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  }

  .nav-menu-toggle .material-symbols-outlined,
  .mobile-nav-close .material-symbols-outlined {
    font-size: 1.35rem;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 118;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(4px);
  }

  .mobile-nav-backdrop.is-open {
    display: block;
  }

  .mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 119;
    width: min(88vw, 360px);
    height: 100vh;
    padding: 1.1rem 1rem 1.5rem;
    background: rgba(12, 13, 16, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mobile-nav-drawer.is-open {
    transform: translateX(0);
  }

  .mobile-nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .mobile-nav-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 3rem;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: #f3f4f6;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
  }

  .mobile-nav-link-icon {
    flex-shrink: 0;
    font-size: 1.15rem;
    color: var(--primary);
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:focus-visible {
    border-color: rgba(255, 193, 7, 0.25);
    background: rgba(255, 193, 7, 0.08);
    color: var(--primary);
    outline: none;
  }

  .mobile-nav-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0 1rem;
    border-radius: 0.9rem;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 0 24px rgba(255, 193, 7, 0.18);
  }
}

/* Hero Section - Stitch */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-glow-orb {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 800px;
  height: 800px;
  background: rgba(255, 193, 7, 0.05);
  filter: blur(150px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Tag - Stitch capsule */
.tag {
  margin-bottom: 2rem;
}

.tag-stitch {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(21, 22, 26, 0.5);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
  animation: tag-pulse 2s ease-in-out infinite;
}

@keyframes tag-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.tag-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero-title-stitch {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

@media (min-width: 1024px) {
  .hero-title-stitch {
    font-size: 4.5rem;
  }
}

.hero-title-muted {
  color: #9ca3af;
}

.hero-title-gradient {
  color: transparent;
  background: linear-gradient(to right, var(--primary), #FFC107, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
}

.highlight {
  color: var(--primary);
}

.hero-desc {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-desc-stitch {
  font-size: 1.125rem;
  font-weight: 300;
  border-left: 2px solid rgba(255, 193, 7, 0.3);
  padding-left: 1.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .hero-desc-stitch {
    font-size: 1.25rem;
  }
}

.hero-desc-bold {
  color: #fff;
  font-weight: 500;
}

.btn-primary {
  background: var(--primary);
  color: #0c0d10;
  border: none;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.2s ease;
  border-radius: 0.25rem;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #FFD54F;
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(255, 193, 7, 0.45), 0 0 48px rgba(255, 193, 7, 0.2);
}

.btn-primary .material-symbols-outlined {
  will-change: transform;
  transition: transform 0.2s ease;
}

.hero-cta-icon {
  font-size: 1.125rem;
  color: #0c0d10;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
  }
}

.hero-stats-stitch {
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-icon,
.stat-icon-m {
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.stat-item-primary .stat-value-big {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label-small {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-value.yellow {
  color: var(--primary);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual - Stitch tasarımına uyumlu */
.hero-visual {
  position: relative;
  height: 540px;
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dashboard-card-stitch {
  background: #18191D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.dashboard-card-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.5;
}

.dashboard-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.dashboard-header-stitch {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.dashboard-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dashboard-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.dashboard-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.dashboard-trend-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Bar chart - Stitch: 5 gri bar (W1–W5) + 1 sarı Projeksiyon */
.dashboard-chart-wrap {
  position: relative;
  margin-bottom: 20px;
  z-index: 2;
}

.dashboard-chart-stitch {
  padding-top: 4px;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  height: 256px;
  position: relative;
}

.chart-bar-w {
  flex: 1;
  background: #23242a;
  border-radius: 2px 2px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 20%;
  transition: background 0.2s;
}

.chart-bar-w:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chart-bar-tooltip {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-family: inherit;
  color: var(--text-muted);
  background: #0a0a0a;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.chart-bar-w {
  position: relative;
}

.chart-bar-w:hover .chart-bar-tooltip {
  opacity: 1;
}

.chart-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.chart-bar-projection {
  position: relative;
}

.chart-projection-label {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  z-index: 5;
  white-space: nowrap;
}

.chart-projection-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.chart-projection-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.chart-bar-active-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
}

.chart-bar-active-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.chart-bar.active {
  width: 100%;
  flex: 1;
  min-height: 60px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.2);
}

.chart-dashed-line {
  position: absolute;
  top: 0;
  right: 100%;
  width: 200px;
  height: 0;
  border-top: 1px dashed rgba(255, 193, 7, 0.3);
  pointer-events: none;
}

.dashboard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.dashboard-footer-stitch {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-source {
  font-size: 11px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.footer-status {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-dot-green {
  background: #a3e635;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Floating kartlar - Stitch konumları + float animasyonu */
.floating-card {
  position: absolute;
  background: linear-gradient(135deg, #1a1c22, #141519);
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  z-index: 20;
  position: absolute;
}

.floating-ani {
  animation: float 6s ease-in-out infinite;
}

.floating-ani-delay {
  animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.floating-yeni-hasta {
  top: -24px;
  right: -48px;
  width: 256px;
}

.floating-edinim {
  bottom: -32px;
  left: -32px;
  width: 256px;
  z-index: 30;
}

.floating-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.floating-header .floating-label,
.floating-header .floating-title {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.floating-icon,
.floating-icon-wrap {
  background: rgba(255, 193, 7, 0.1);
  padding: 6px;
  border-radius: 6px;
  border: 1px solid rgba(255, 193, 7, 0.1);
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.floating-icon-wrap .material-symbols-outlined {
  font-size: 14px;
}

.trend-up {
  color: #a3e635;
  font-size: 12px;
  font-weight: 700;
}

.floating-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
  font-variant-numeric: tabular-nums;
}

.floating-bar-wrap {
  height: 4px;
  background: #23242a;
  border-radius: 999px;
  overflow: hidden;
}

.floating-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
  transition: width 0.6s ease;
}

/* EDİNİM MALİYETİ - 3 segment bar (Stitch) */
.floating-edinim .floating-header {
  justify-content: space-between;
  align-items: center;
}

.floating-info,
.floating-info-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-info-icon.material-symbols-outlined {
  font-size: 14px;
}

.floating-value-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.floating-value-row .floating-value {
  font-size: 24px;
  margin-bottom: 0;
}

.trend-down {
  color: #a3e635;
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.floating-bars-three {
  display: flex;
  gap: 4px;
}

.floating-bar-seg {
  flex: 1;
  height: 4px;
  border-radius: 999px;
}

.floating-bar-seg-1 {
  background: rgba(255, 193, 7, 0.2);
}

.floating-bar-seg-2 {
  background: rgba(255, 193, 7, 0.4);
}

.floating-bar-seg-3 {
  background: var(--primary);
}

/* System Architecture Section */
.system-arch {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 15%, transparent 85%, var(--bg-dark) 100%),
    radial-gradient(circle at top, rgba(255, 193, 7, 0.08), transparent 65%),
    var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.system-arch::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: linear-gradient(#2a2d35 1px, transparent 1px),
    linear-gradient(90deg, #2a2d35 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.left {
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 600;
}

.section-tag::before,
.section-tag::after {
  content: '•';
  margin: 0 8px;
}

.section-header.left .section-tag::before {
  content: none;
}

.section-header.left .section-tag::after {
  content: none;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
}

.system-diagram {
  display: none;
  /* Stitch düzeni: core-orbit-desktop / core-orbit-mobile kullanılıyor */
}

/* Stitch: Çekirdek sistem dairesel mimari */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.1);
  }

  50% {
    box-shadow: 0 0 50px rgba(255, 193, 7, 0.4);
  }
}

.animate-core-pulse {
  animation: pulse-glow 3s infinite ease-in-out;
}

.material-icon,
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined', system-ui, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
}

/* Saat yönünde yavaş dönüş (tüm orbit: halkalar + merkez + kartlar) */
@keyframes core-orbit-rotate {
  from {
    transform: scale(0.85) rotate(0deg);
  }

  to {
    transform: scale(0.85) rotate(360deg);
  }
}

/* Kartlar düz kalsın: orbit ile aynı sürede ters yönde dönüş */
@keyframes core-orbit-counter-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.core-orbit-desktop {
  position: relative;
  width: 1000px;
  height: 1000px;
  margin: 0 auto 80px;
  display: none;
  overflow: visible;
  pointer-events: none;
  /* Ignore hover on empty spaces */
}

@media (min-width: 1024px) {
  .core-orbit-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    animation: core-orbit-rotate 120s linear infinite;
  }

  /* Pause entire orbit and counter-rotations when hovering over any active element */
  .core-orbit-desktop:hover,
  .core-orbit-desktop:hover .core-center,
  .core-orbit-desktop:hover .core-module-inner {
    animation-play-state: paused;
  }
}

.core-rings {
  position: absolute;
  inset: 0;
}

.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.core-ring-outer {
  inset: 0;
}

.core-ring-mid {
  inset: 15%;
  opacity: 0.6;
}

.core-ring-inner {
  inset: 25%;
  border-style: dashed;
  opacity: 0.7;
}

/* Yatay/dikey ışınlar kapatıldı; sadece 10 kart çizgisi (core-line) kullanılıyor */
.core-rays::before,
.core-rays::after {
  display: none;
}

.core-center {
  position: relative;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  border: 2px solid rgba(255, 193, 7, 0.4);
  background: #15161a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(255, 193, 7, 0.18);
  z-index: 5;
  /* Orbit dönerken merkez sabit kalsın (kartlarla aynı ters dönüş) */
  animation: core-orbit-counter-rotate 120s linear infinite;
  pointer-events: auto;
  cursor: pointer;
}

.core-center-inner {
  position: absolute;
  inset: 10%;
  border-radius: inherit;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.core-center-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 8px;
}

.core-center-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--primary);
  line-height: 1.3;
}

.core-module {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  z-index: 10;
}

.core-module-inner {
  position: relative;
  z-index: 1;
  animation: core-orbit-counter-rotate 120s linear infinite;
}

.core-module-card {
  width: 220px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(28, 30, 36, 0.98), rgba(18, 19, 24, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.core-module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 193, 7, 0.06) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.core-module-card:hover {
  transform: scale(1.06) translateY(-2px);
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 28px rgba(255, 193, 7, 0.12);
}

.core-module-card--primary,
.core-module-card--accent {
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.core-module-icon {
  font-size: 28px;
  color: var(--primary);
}

.core-module-card h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0 0 4px;
  font-weight: 700;
}

.core-module-card p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Merkezden her karta tek çizgi: orbit merkezinde sabit, açıyla yöneliyor (orbit ile döner) */
.core-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.core-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 1px;
  margin-top: -0.5px;
  transform-origin: 0 50%;
  transform: rotate(var(--angle, 0deg));
  background: linear-gradient(to right, rgba(255, 193, 7, 0.55), rgba(255, 193, 7, 0.25));
}

.core-module-connector {
  position: absolute;
  background: linear-gradient(to bottom, rgba(255, 193, 7, 0.4), transparent);
}

.core-module-connector--down {
  left: 50%;
  bottom: -24px;
  height: 24px;
  width: 1px;
  transform: translateX(-50%);
}

.core-module-connector--up {
  left: 50%;
  top: -24px;
  height: 24px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to top, rgba(255, 193, 7, 0.4), transparent);
}

.core-module-connector--left {
  left: -22px;
  top: 50%;
  width: 22px;
  height: 1px;
  background: linear-gradient(to left, rgba(255, 193, 7, 0.4), transparent);
  transform: translateY(-50%);
}

/* Mobil çekirdek liste */
.core-orbit-mobile {
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 64px;
}

@media (min-width: 1024px) {
  .core-orbit-mobile {
    display: none;
  }
}

.core-mobile-wheel {
  position: relative;
  width: min(100%, 340px);
  height: 340px;
  margin: 0 auto 12px;
}

.core-mobile-wheel-rings,
.core-mobile-wheel-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.core-mobile-wheel-rings {
  opacity: 0.9;
}

.core-mobile-wheel-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.core-mobile-wheel-ring-outer {
  inset: 0;
}

.core-mobile-wheel-ring-mid {
  inset: 13%;
}

.core-mobile-wheel-ring-inner {
  inset: 26%;
  border-style: dashed;
  opacity: 0.7;
}

.core-mobile-wheel-track {
  animation: core-mobile-wheel-spin 42s linear infinite;
}

.core-mobile-wheel-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-138px);
}

.core-mobile-wheel-node-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 22, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  animation: core-mobile-wheel-counter-spin 42s linear infinite;
}

.core-mobile-wheel-node-inner .material-symbols-outlined {
  font-size: 20px;
}

.core-mobile-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 193, 7, 0.34);
  background: #15161a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.14);
}

.core-mobile-wheel-center-inner {
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 193, 7, 0.18);
}

.core-mobile-wheel-center-icon {
  position: relative;
  z-index: 1;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 6px;
}

.core-mobile-wheel-center h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--primary);
}

@keyframes core-mobile-wheel-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes core-mobile-wheel-counter-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.core-mobile-core {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1c1e24, #15161a);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.core-mobile-core::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 193, 7, 0.08) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.core-mobile-core:hover {
  border-color: rgba(255, 193, 7, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 193, 7, 0.08);
}

.core-mobile-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.core-mobile-icon .material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
  display: block;
}

.core-mobile-core h3 {
  font-size: 16px;
  margin: 0 0 4px;
  color: #FFC107;
}

.core-mobile-core p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

.core-mobile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.core-mobile-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1c1e24, #15161a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.core-mobile-item:hover {
  border-color: rgba(255, 193, 7, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 193, 7, 0.07);
  transform: translateY(-1px);
}

.core-mobile-item .material-symbols-outlined,
.core-mobile-item .material-icon {
  color: #FFC107;
}

.core-mobile-item h4 {
  font-size: 13px;
  margin: 0 0 2px;
  color: #FFC107;
}

.core-mobile-item p {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 0;
}

.core-mobile-item--wide {
  grid-column: auto;
}

/* Premium / Done-For-You kutusu */
.core-premium {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  z-index: 10;
}

.core-premium::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background:
    conic-gradient(from 0deg,
      transparent 0deg,
      transparent 300deg,
      rgba(255, 193, 7, 0.08) 322deg,
      rgba(255, 193, 7, 0.95) 342deg,
      rgba(255, 193, 7, 0.2) 352deg,
      transparent 360deg);
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
  animation: premium-border-rotate 4.8s linear infinite;
}

.core-premium-borders::before,
.core-premium-borders::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 193, 7, 0.25);
  border-radius: 8px 0 0 0;
  top: -16px;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.core-premium-borders::after {
  left: auto;
  right: 0;
  border-left: 2px solid rgba(255, 193, 7, 0.25);
  border-right: none;
  border-radius: 0 8px 0 0;
}

.core-premium-inner {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: #15161a;
  display: grid;
  grid-template-columns: 1fr;
  isolation: isolate;
}

.core-premium-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    conic-gradient(from 0deg,
      rgba(255, 255, 255, 0.06) 0deg,
      rgba(255, 255, 255, 0.04) 280deg,
      rgba(255, 193, 7, 0.16) 316deg,
      rgba(255, 193, 7, 1) 340deg,
      rgba(255, 193, 7, 0.18) 356deg,
      rgba(255, 255, 255, 0.05) 360deg);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  animation: premium-border-rotate 4.8s linear infinite;
}

@media (min-width: 768px) {
  .core-premium-inner {
    grid-template-columns: 220px 1fr;
  }
}

.core-premium-left,
.core-premium-right {
  position: relative;
  z-index: 2;
}

.core-premium-left {
  background: #0e0f12;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .core-premium-left {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

.core-premium-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1e2025;
  border: 1px solid rgba(255, 193, 7, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 16px;
  box-shadow: 0 0 24px rgba(255, 193, 7, 0.2);
}

.core-premium-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 193, 7, 0.9);
  font-weight: 700;
}

.core-premium-right {
  background: #1e2025;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .core-premium-right {
    padding: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }
}

.core-premium-text h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.core-premium-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

.core-premium-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

@media (min-width: 768px) {
  .core-premium-cta {
    align-items: flex-start;
  }
}

.core-premium-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.4);
  white-space: nowrap;
}

@keyframes premium-border-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  .core-premium::before,
  .core-premium-inner::before {
    animation: none;
  }

  .guarantee-icon-wrap,
  .guarantee-icon-glow,
  .guarantee-icon-box,
  .guarantee-icon-symbol {
    animation: none;
  }
}

.core-premium-note {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(156, 163, 175, 0.88);
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: min(40rem, 100%);
}

@media (min-width: 768px) {
  .core-premium-note {
    flex: 1 1 100%;
    text-align: left;
    max-width: none;
    line-height: 1.55;
  }
}

@media (max-width: 767px) {
  .core-premium-right {
    padding: 28px 20px;
    align-items: stretch;
    text-align: center;
  }

  .core-premium-text {
    width: 100%;
  }

  .core-premium-text h2,
  .core-premium-text p {
    max-width: 100%;
    text-align: center;
  }

  .core-premium-cta {
    width: 100%;
    min-width: 0;
    align-items: center;
  }

  .core-premium-button {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .core-premium-note {
    width: 100%;
  }
}

.btn-secondary {
  background: var(--primary);
  color: #0a0a0a;
  border: none;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 8px;
}

/* Comparison Section - Stitch */
.comparison {
  padding: 100px 0;
  background: var(--bg-dark);
}

.comparison-stitch .section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #22252b;
  border: 1px solid #2f333c;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.comparison-stitch .section-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

.highlight-underline {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgba(255, 193, 7, 0.35);
}

.comparison-grid-stitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .comparison-grid-stitch {
    grid-template-columns: 1fr;
  }
}

.vs-badge-stitch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #16181d;
  border: 1px solid #2f333c;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  z-index: 20;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .vs-badge-stitch {
    display: flex;
  }
}

.comparison-card {
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.comparison-card-left {
  background: linear-gradient(145deg, #1a1c21, #15161b);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.comparison-card-left:hover {
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 68, 68, 0.06);
}

.comparison-card-right {
  background: linear-gradient(145deg, #1f2128, #191c22);
  border: 1px solid rgba(255, 193, 7, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 193, 7, 0.08);
  position: relative;
}

.comparison-card-right::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 193, 7, 0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

@media (min-width: 768px) {
  .comparison-card-right {
    transform: scale(1.02) translateY(-8px);
  }
}

.comparison-card-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.2);
}

.comparison-card-dot-tr {
  top: 12px;
  right: 12px;
}

.comparison-card-dot-bl {
  bottom: 12px;
  left: 12px;
}

.comparison-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 193, 7, 0.05), transparent);
  pointer-events: none;
}

.comparison-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.card-header-stitch {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid #2f333c;
}

.comparison-card-right .card-header-stitch {
  border-bottom-color: rgba(255, 193, 7, 0.2);
}

.card-label-stitch {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.card-label-primary {
  color: var(--primary);
}

.card-title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.card-badge {
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-badge-muted {
  background: #22252b;
  border: 1px solid #2f333c;
  color: var(--text-muted);
}

.card-badge-primary {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.comparison-list-stitch {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.comparison-list-stitch li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

.comparison-list-positive li {
  color: var(--text-primary);
}

.comparison-icon {
  flex-shrink: 0;
  font-size: 22px;
}

.comparison-icon-close {
  color: #f87171;
}

.comparison-icon-check {
  color: var(--primary);
}

.card-footer-stitch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding-top: 24px;
  margin-top: auto;
  border-top: 1px solid #2f333c;
}

.comparison-card-right .card-footer-stitch {
  border-top-color: rgba(255, 193, 7, 0.2);
}

.card-footer-stitch .material-symbols-outlined {
  font-size: 20px;
}

.card-footer-danger {
  color: #f87171;
}

.card-footer-primary {
  color: var(--primary);
}

/* ROI Section - Stitch */
.roi-section-stitch {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 193, 7, 0.25);
  background: linear-gradient(145deg, #1f2128, #16181d);
  padding: 1px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
}

.roi-section-stitch:hover {
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 193, 7, 0.08);
}

.roi-section-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 193, 7, 0.5), transparent);
}

.roi-section-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
  background: rgba(15, 17, 21, 0.6);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .roi-section-inner {
    padding: 32px;
  }
}

.roi-content {
  flex: 1;
  width: 100%;
  text-align: center;
}

.roi-content-text {
  width: 100%;
}

.roi-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  justify-content: center;
}

.roi-icon-wrap {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roi-icon-symbol {
  font-size: 24px;
  color: var(--primary);
}

.roi-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.roi-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 auto;
  max-width: min(52rem, 100%);
  text-wrap: balance;
}

.roi-highlight-inline {
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 193, 7, 0.4);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-label.yellow {
  color: var(--primary);
}

/* Why Section - Tanıdık Geliyor mu? (Stitch) */
.why-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, #181611 15%, #181611 100%);
  position: relative;
}

.why-section-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.why-section-stitch .container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .why-section-stitch .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .why-section-stitch .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.why-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.why-tag {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

.why-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}

.why-subtitle {
  font-size: 1.125rem;
  color: #bab29c;
  margin: 0.5rem 0 0;
  max-width: 42rem;
  line-height: 1.5;
}

/* Problems grid - Stitch: 6 cols lg, 2 md, 1 sm; bottom row centered */
.problems-grid-stitch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .problems-grid-stitch {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problems-grid-stitch {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }

  .problems-grid-stitch .problem-card-stitch:not(.problem-card-offset) {
    grid-column: span 2;
  }

  .problems-grid-stitch .problem-card-offset {
    grid-column: 2 / span 2;
  }

  .problems-grid-stitch .problem-card-stitch:last-child {
    grid-column: span 2;
  }
}

.problem-card-stitch {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(58, 52, 37, 0.6);
  background: linear-gradient(145deg, #251f14, #1e1a11);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.problem-card-stitch::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.06) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 193, 7, 0.04) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.problem-card-stitch:hover {
  border-color: rgba(255, 193, 7, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 193, 7, 0.09);
  transform: translateY(-2px);
}

.problem-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.12);
  color: var(--primary);
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.problem-card-stitch .material-symbols-outlined {
  font-size: 28px;
}

.problem-card-stitch:hover .problem-card-icon {
  background: var(--primary);
  color: #181611;
}

.problem-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.problem-card-stitch h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}

.problem-card-stitch p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.625;
  color: #bab29c;
  margin: 0;
}

/* Diagnosis box - Stitch */
.diagnosis-box-stitch {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.04), rgba(20, 20, 20, 0.8));
  border: 1px solid rgba(255, 193, 7, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 193, 7, 0.04);
  padding: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.diagnosis-box-stitch::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.25), rgba(255, 255, 255, 0.04) 50%, rgba(255, 193, 7, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

@media (min-width: 768px) {
  .diagnosis-box-stitch {
    padding: 3rem;
  }
}

.diagnosis-box-blur {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.1);
  filter: blur(48px);
}

.diagnosis-box-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .diagnosis-box-inner {
    flex-direction: row;
    align-items: center;
  }
}

.diagnosis-icon-wrap {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #181611;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.diagnosis-icon-symbol {
  font-size: 32px !important;
  font-variation-settings: 'FILL' 0, 'wght' 700;
}

.diagnosis-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diagnosis-label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.diagnosis-label-line {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--primary);
}

.diagnosis-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}

.diagnosis-quote {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.625;
  color: #fff;
  margin: 0;
}

@media (min-width: 768px) {
  .diagnosis-quote {
    font-size: 1.5rem;
  }
}

.diagnosis-quote .highlight {
  color: var(--primary);
  font-weight: 700;
}

/* Features Section - Neden KlinikBoost? (Stitch) */
.features {
  padding: 100px 0;
  background: linear-gradient(to bottom, #181611 0%, #0f0f0f 15%, #0f0f0f 100%);
  position: relative;
}

.features-stitch-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-size: 40px 40px;
  background-image: linear-gradient(to right, #262626 1px, transparent 1px),
    linear-gradient(to bottom, #262626 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.features-stitch .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .features-stitch .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.features-header-stitch {
  margin-bottom: 4rem;
  text-align: left;
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: linear-gradient(to right, rgba(38, 38, 38, 0.3), transparent);
}

.features-title-stitch {
  position: relative;
  display: inline-block;
  font-size: clamp(1.875rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 1.15rem;
  padding-bottom: 0.35rem;
}

.features-title-stitch::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255, 193, 7, 0.18), rgba(255, 255, 255, 0.08));
}

.features-title-stitch::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -8%;
  width: 42%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255, 193, 7, 0), #FFC107 35%, #ffffff 52%, #FFC107 72%, rgba(255, 193, 7, 0));
  box-shadow: 0 0 16px rgba(255, 193, 7, 0.45);
  filter: saturate(1.08);
  animation: features-title-underline-sweep 2.8s ease-in-out infinite;
}

.features-title-highlight {
  color: var(--primary);
}

@keyframes features-title-underline-sweep {
  0% {
    left: -10%;
    opacity: 0.15;
  }

  12% {
    opacity: 1;
  }

  50% {
    left: 34%;
    opacity: 1;
  }

  88% {
    opacity: 0.9;
  }

  100% {
    left: 72%;
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .features-title-stitch::after {
    animation: none;
    left: 28%;
    opacity: 0.85;
  }

  .about-founders-title::after {
    animation: none;
    left: 28%;
    opacity: 0.85;
  }

  .about-founders-grid-bg,
  .about-founders-unified {
    animation: none;
  }

  .about-founders-lead::before {
    animation: none;
    opacity: 0.88;
  }
}

.features-lead-title-stitch {
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #f5f5f5;
  margin: 0 0 1rem;
  max-width: min(42rem, 100%);
}

.features-lead-desc-stitch {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.625;
  color: #a3a3a3;
  margin: 0;
  max-width: min(42rem, 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid-stitch {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid-stitch {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: linear-gradient(145deg, #1e1e1e, #181818);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: all 0.3s;
}

.feature-card-stitch {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.feature-card-stitch::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 193, 7, 0.05) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.feature-card-stitch:hover {
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 193, 7, 0.08);
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 193, 7, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature-card-stitch:hover .feature-card-overlay {
  opacity: 1;
}

.feature-icon-wrap {
  position: relative;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  background: linear-gradient(145deg, #2a2a2a, #222);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card-stitch .feature-icon-wrap .material-symbols-outlined {
  font-size: 24px;
}

.feature-card-stitch:hover .feature-icon-wrap {
  background: var(--primary);
  color: #0f0f0f;
  border-color: var(--primary);
}

.feature-card-body {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.375;
  color: #fff;
  margin: 0;
}

.feature-card-underline {
  height: 2px;
  width: 2rem;
  background: rgba(255, 193, 7, 0.3);
  transition: width 0.3s;
}

.feature-card-stitch:hover .feature-card-underline {
  width: 4rem;
}

.feature-card-desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.625;
  color: #a3a3a3;
  margin: 0;
}

/* About founders - Biz Kimiz? (Stitch) */
.about-founders {
  position: relative;
  padding: 5rem 0 5.5rem;
  background: linear-gradient(to bottom, #0f0f0f 0%, #0c0c0e 40%, #09090b 100%);
  overflow: hidden;
}

@keyframes about-founders-bg-breathe {
  0%,
  100% {
    opacity: 0.14;
  }

  50% {
    opacity: 0.22;
  }
}

.about-founders-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-size: 40px 40px;
  background-image: linear-gradient(to right, #262626 1px, transparent 1px),
    linear-gradient(to bottom, #262626 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 25%, transparent 75%);
  animation: about-founders-bg-breathe 12s ease-in-out infinite;
}

.about-founders-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .about-founders-container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.about-founders-header {
  margin-bottom: 2.75rem;
  text-align: left;
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: linear-gradient(to right, rgba(255, 193, 7, 0.07), rgba(38, 38, 38, 0.38) 45%, transparent);
  box-shadow: inset 0 0 40px rgba(255, 193, 7, 0.03);
}

.about-founders-title {
  position: relative;
  display: inline-block;
  font-size: clamp(1.75rem, 2.85vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 1rem;
  padding-bottom: 0.35rem;
  max-width: min(48rem, 100%);
}

.about-founders-title::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255, 193, 7, 0.22), rgba(255, 255, 255, 0.08));
}

.about-founders-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -8%;
  width: 42%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255, 193, 7, 0), #FFC107 35%, #ffffff 52%, #FFC107 72%, rgba(255, 193, 7, 0));
  box-shadow: 0 0 16px rgba(255, 193, 7, 0.45);
  filter: saturate(1.08);
  animation: features-title-underline-sweep 2.8s ease-in-out infinite;
}

.about-founders-lead {
  position: relative;
  font-size: clamp(1.05rem, 1.85vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: #d4d4d4;
  margin: 0;
  padding-left: 1rem;
  max-width: min(46rem, 100%);
}

@keyframes about-founders-lead-bar-glow {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.15);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 14px rgba(255, 193, 7, 0.45);
  }
}

.about-founders-lead::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFC107, rgba(255, 193, 7, 0.2));
  animation: about-founders-lead-bar-glow 2.6s ease-in-out infinite;
}

.about-founders-card-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .about-founders-card-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    align-items: stretch;
  }
}

.about-founder-card {
  position: relative;
  margin: 0;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #1e1e1e, #181818);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .about-founder-card {
    padding: 2rem 1.75rem;
  }
}

.about-founder-card-stitch:hover {
  border-color: rgba(255, 193, 7, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 193, 7, 0.07);
}

.about-founder-text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: #a3a3a3;
  margin: 0 0 1.25rem;
}

.about-founder-sig {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0;
  line-height: 1.45;
}

.about-founder-role {
  font-weight: 500;
  color: rgba(255, 193, 7, 0.92);
}

@keyframes about-founders-quote-shimmer {
  0%,
  100% {
    border-color: rgba(255, 193, 7, 0.18);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 0 18px rgba(255, 193, 7, 0.04);
  }

  50% {
    border-color: rgba(255, 193, 7, 0.32);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 36px rgba(255, 193, 7, 0.1);
  }
}

.about-founders-unified {
  margin: 0;
  padding: 1.5rem 1.25rem 1.5rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 193, 7, 0.22);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(15, 15, 15, 0.88));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 0 22px rgba(255, 193, 7, 0.05);
  animation: about-founders-quote-shimmer 5s ease-in-out infinite;
}

@media (min-width: 768px) {
  .about-founders-unified {
    padding: 1.75rem 2rem;
  }
}

.about-founders-unified-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: #e8e8e8;
  margin: 0;
}

@media (min-width: 768px) {
  .about-founders-unified-text {
    font-size: 1.0625rem;
  }
}

.about-founders-unified-label {
  display: inline;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-right: 0.35rem;
}

/* Guarantee Section - KlinikBoost Başarı Taahhüdü (Stitch) */
.guarantee {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #0f0f0f 0%, #09090b 15%, #09090b 85%, #0c0d10 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-stitch-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.guarantee-stitch-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.2), transparent);
}

.guarantee-stitch-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24rem;
  pointer-events: none;
  background: linear-gradient(to top, #0c0d10, transparent);
}

.guarantee-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-icon-wrap {
  position: relative;
  margin-bottom: 2.5rem;
  animation: guarantee-icon-float 3.4s ease-in-out infinite;
}

.guarantee-icon-glow {
  position: absolute;
  inset: 0;
  background: rgba(255, 193, 7, 0.2);
  filter: blur(48px);
  border-radius: 50%;
  opacity: 0.45;
  transition: opacity 0.7s;
  animation: guarantee-icon-glow-pulse 2.8s ease-in-out infinite;
}

.guarantee-icon-wrap:hover .guarantee-icon-glow {
  opacity: 0.75;
}

.guarantee-icon-box {
  position: relative;
  width: 5rem;
  height: 5rem;
  background: #121212;
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.15);
  animation: guarantee-icon-box-pulse 2.8s ease-in-out infinite;
}

.guarantee-icon-corner {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-color: rgba(255, 193, 7, 0.8);
  border-style: solid;
}

.guarantee-icon-corner-tl {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-radius: 0.25rem 0 0 0;
}

.guarantee-icon-corner-br {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
  border-radius: 0 0 0.25rem 0;
}

.guarantee-icon-symbol {
  font-size: 2.25rem;
  color: var(--primary);
  animation: guarantee-icon-symbol-breathe 2.8s ease-in-out infinite;
}

@keyframes guarantee-icon-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes guarantee-icon-glow-pulse {

  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.18);
  }
}

@keyframes guarantee-icon-box-pulse {

  0%,
  100% {
    box-shadow: 0 0 24px rgba(255, 193, 7, 0.14);
  }

  50% {
    box-shadow: 0 0 42px rgba(255, 193, 7, 0.32);
  }
}

@keyframes guarantee-icon-symbol-breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.guarantee-header-text {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.guarantee-title-stitch {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.guarantee-tagline-stitch {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  letter-spacing: 0.025em;
  text-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
}

.guarantee-card-wrap {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
}

.guarantee-card-wrap::before {
  display: none;
}

.guarantee-card-dot {
  display: none;
}

.guarantee-card-dot-tl {
  top: -6px;
  left: -6px;
}

.guarantee-card-dot-br {
  bottom: -6px;
  right: -6px;
}

.guarantee-card-corner {
  display: none;
}

.guarantee-card-corner-tr {
  top: -1px;
  right: -1px;
  border-width: 1px 1px 0 0;
  border-radius: 0 0.75rem 0 0;
}

.guarantee-card-corner-bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 1px 1px;
  border-radius: 0 0 0 0.75rem;
}

.guarantee-card {
  position: relative;
  z-index: 2;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  overflow: hidden;
  backdrop-filter: blur(4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .guarantee-card {
    padding: 3.5rem;
  }
}

.guarantee-card-line {
  display: none;
}

.guarantee-card-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: linear-gradient(to right, #333 1px, transparent 1px),
    linear-gradient(to bottom, #333 1px, transparent 1px);
  background-size: 20px 20px;
  mix-blend-mode: overlay;
}

.guarantee-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.guarantee-card-intro {
  font-size: 1.125rem;
  line-height: 1.625;
  font-weight: 300;
  color: #d1d5db;
  margin: 0;
}

@media (min-width: 768px) {
  .guarantee-card-intro {
    font-size: 1.25rem;
  }
}

.guarantee-card-commitment {
  display: block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.025em;
  text-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
}

.guarantee-card-divider {
  width: 33.333%;
  height: 1px;
  background: linear-gradient(to right, transparent, #27272a, transparent);
}

.guarantee-card-note {
  font-size: 0.75rem;
  line-height: 1.625;
  color: #6b7280;
  font-style: italic;
  margin: 0;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .guarantee-card-note {
    font-size: 0.875rem;
  }
}

.guarantee-card-border-outer {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  pointer-events: none;
  z-index: 0;
}

.guarantee-card-trace {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.guarantee-card-trace-base,
.guarantee-card-trace-glow,
.guarantee-card-trace-line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.guarantee-card-trace-base {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
}

.guarantee-card-trace-glow {
  stroke: rgba(255, 193, 7, 0.45);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 34 66;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.7)) drop-shadow(0 0 12px rgba(255, 193, 7, 0.45));
  animation: guarantee-card-trace-run 6.8s linear infinite;
}

.guarantee-card-trace-line {
  stroke: #FFC107;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 34 66;
  stroke-dashoffset: 0;
  animation: guarantee-card-trace-run 6.8s linear infinite;
}

@keyframes guarantee-card-trace-run {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -100;
  }
}

/* Capacity + CTA Section - Gerçeklik Kontrolü (Stitch) */
.capacity {
  padding: 3rem 0;
  background: linear-gradient(to bottom, #0c0d10 0%, #0c0d10 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .capacity {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .capacity {
    padding: 6rem 0;
  }
}

.capacity-stitch-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(42, 45, 54, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(42, 45, 54, 0.3) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 40%, transparent 100%);
}

.capacity-stitch-blur {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: rgba(255, 193, 7, 0.05);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.capacity-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .capacity-inner {
    padding: 0 2.5rem;
    gap: 6rem;
  }
}

@media (min-width: 1024px) {
  .capacity-inner {
    padding: 0 2.5rem;
  }
}

.capacity-header-stitch {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .capacity-header-stitch {
    text-align: left;
  }
}

.capacity-tag-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .capacity-tag-row {
    justify-content: flex-start;
  }
}

.capacity-tag-line {
  display: block;
  height: 2px;
  width: 3rem;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.capacity-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

@media (min-width: 768px) {
  .capacity-tag {
    font-size: 0.875rem;
  }
}

.capacity-title-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.capacity-br-md {
  display: none;
}

@media (min-width: 768px) {
  .capacity-br-md {
    display: block;
  }
}

.capacity-title-stitch {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}

.capacity-title-gradient {
  color: transparent;
  background: linear-gradient(to right, var(--primary), #FFC107);
  -webkit-background-clip: text;
  background-clip: text;
}

.capacity-desc-stitch {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625;
  color: #9ca3af;
  margin: 0;
  max-width: 48rem;
}

@media (min-width: 768px) {
  .capacity-desc-stitch {
    font-size: 1.25rem;
  }
}

.capacity-desc-strong {
  color: #fff;
  font-weight: 600;
}

/* Capacity cards */
.capacity-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .capacity-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.capacity-card-stitch {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(42, 45, 54, 0.7);
  background: linear-gradient(145deg, #1d1f27, #161820);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}

.capacity-card-stitch::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 193, 7, 0.06) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.capacity-card-stitch:hover {
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 28px rgba(255, 193, 7, 0.08);
  transform: translateY(-3px);
}

.capacity-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.capacity-card-stitch:hover .capacity-card-overlay {
  opacity: 1;
}

.capacity-card-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.capacity-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: #0c0d10;
  border: 1px solid #2a2d36;
  color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, border-color 0.3s;
}

.capacity-card-stitch:hover .capacity-icon-wrap {
  transform: scale(1.05);
  border-color: rgba(255, 193, 7, 0.3);
}

.capacity-icon-wrap .material-symbols-outlined {
  font-size: 32px;
}

.capacity-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}

.capacity-card-desc {
  position: relative;
  z-index: 10;
  font-size: 1rem;
  line-height: 1.625;
  color: #9ca3af;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(42, 45, 54, 0.5);
}

/* Capacity CTA box */
.capacity-cta-box {
  position: relative;
  border-radius: 2rem;
  background: linear-gradient(145deg, #131519, #0e1014);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.capacity-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 255, 255, 0.04) 40%, rgba(255, 193, 7, 0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.capacity-cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #1a1c23, #0c0d10);
  pointer-events: none;
}

.capacity-cta-blur {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 66.666%;
  height: 250px;
  background: rgba(255, 193, 7, 0.1);
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}

.capacity-cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
  padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
  .capacity-cta-content {
    padding: 5rem 2rem;
  }
}

.capacity-cta-title {
  font-size: clamp(1.875rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  max-width: 56rem;
}

.capacity-cta-highlight {
  color: var(--primary);
}

.capacity-cta-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.capacity-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 540px;
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: #0c0d10;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

@media (min-width: 768px) {
  .capacity-cta-btn {
    font-size: 1.25rem;
  }
}

.capacity-cta-btn:hover {
  background: #FFC107;
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.4);
  transform: translateY(-4px);
}

.capacity-cta-btn-icon {
  font-size: 28px;
  transition: transform 0.3s;
}

.capacity-cta-btn:hover .capacity-cta-btn-icon {
  transform: translateX(4px);
}

.capacity-cta-desc {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.7);
  margin: 0;
  max-width: 32rem;
  line-height: 1.5;
}

.capacity-cta-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.capacity-cta-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #2a2d36;
  background: rgba(12, 13, 16, 0.5);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  font-weight: 700;
  color: #d1d5db;
}

.capacity-cta-pill .material-symbols-outlined {
  font-size: 22px;
  color: var(--primary);
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, #0c0d10 0%, #050505 30%, #050505 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  /* Softened border to blend well with the gradient */
  padding: 60px 0 30px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  text-decoration: none;
}

.footer-logo-image {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(260px, 80vw);
  object-fit: contain;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: whatsapp-float-bob 2.6s ease-in-out infinite;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.whatsapp-float::before {
  background: radial-gradient(circle, rgba(37, 211, 102, 0.28) 0%, rgba(37, 211, 102, 0) 70%);
  transform: scale(1.48);
  opacity: 0.7;
  animation: whatsapp-float-glow 2.6s ease-in-out infinite;
}

.whatsapp-float::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: scale(1.22);
  opacity: 0.65;
  animation: whatsapp-float-ring 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
  filter: saturate(1.06);
}

.whatsapp-float-icon {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
  animation: whatsapp-float-icon-breathe 2.6s ease-in-out infinite;
}

@keyframes whatsapp-float-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes whatsapp-float-glow {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(1.3);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.55);
  }
}

@keyframes whatsapp-float-ring {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1.12);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.32);
  }
}

@keyframes whatsapp-float-icon-breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {

  .whatsapp-float,
  .whatsapp-float::before,
  .whatsapp-float::after,
  .whatsapp-float-icon {
    animation: none;
  }
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 104px;
  z-index: 119;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(12, 13, 16, 0.92);
  color: var(--primary);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, visibility 0.22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.back-to-top .material-symbols-outlined {
  font-size: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: 0;
    height: auto;
    display: flex;
    justify-content: center;
  }

  .dashboard-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .floating-card {
    display: none;
  }

  .comparison-grid-stitch {
    grid-template-columns: 1fr;
  }

  .roi-section-inner {
    padding: 24px 20px;
  }

  .problems-grid-stitch {
    grid-template-columns: 1fr;
  }

  .problems-grid-stitch .problem-card-offset {
    grid-column: span 1;
  }

  .problems-grid-stitch .problem-card-stitch:last-child {
    grid-column: span 1;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .capacity-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .core-mobile-wheel {
    width: min(100%, 308px);
    height: 308px;
    margin-bottom: 8px;
  }

  .core-mobile-wheel-node {
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-124px);
  }

  .core-mobile-wheel-center {
    width: 104px;
    height: 104px;
  }

  .core-mobile-wheel-center h3 {
    font-size: 9px;
  }

  .hero {
    padding: 108px 0 64px;
    min-height: auto;
  }

  .hero-container {
    gap: 28px;
  }

  .hero-content {
    order: 0;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .dashboard-card {
    max-width: 100%;
    padding: 20px;
  }

  .dashboard-value {
    font-size: 34px;
  }

  .dashboard-chart {
    gap: 8px;
    height: 220px;
  }

  .chart-projection-label {
    top: -48px;
    padding: 6px 10px;
  }

  .hero-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-logo-image {
    height: 38px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .back-to-top {
    right: 18px;
    bottom: 84px;
    width: 48px;
    height: 48px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .diagnosis-box-stitch .diagnosis-box-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .diagnosis-box-stitch .diagnosis-label-row {
    justify-content: center;
  }

  .capacity-cta-content {
    padding: 2rem 1.25rem;
  }

  .capacity-cta-title {
    font-size: 1.5rem;
  }

  .capacity-cta-pills {
    flex-direction: column;
    align-items: center;
  }
}


/* ─────────────────────────────────────────────────────────────
   PREMIUM ANIMATION SUPPORT
   ───────────────────────────────────────────────────────────── */

/* nav-cta-btn: shimmer ready */
.nav-cta-btn {
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, box-shadow 0.3s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta-btn:hover {
  background: #FFD54F;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
}

/* capacity-cta-btn shimmer upgrade */
.capacity-cta-btn {
  transition: background-color 0.2s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.capacity-cta-btn:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 36px rgba(255, 193, 7, 0.5), 0 0 60px rgba(255, 193, 7, 0.18) !important;
}

/* Card parallax — hint browser for GPU layers */
.feature-card-stitch,
.capacity-card-stitch,
.comparison-card,
.core-module-card {
  will-change: transform;
  transform-style: preserve-3d;
}

/* Scroll reveal initial visibility is handled by JS.
   Provide a CSS-only fallback for no-JS / bots: */
@media (scripting: none) {

  .problem-card-stitch,
  .feature-card-stitch,
  .capacity-card-stitch,
  .core-mobile-item,
  .core-mobile-core,
  .comparison-card-left,
  .comparison-card-right,
  .roi-section-stitch,
  .core-premium,
  .diagnosis-box-stitch,
  .guarantee-icon-wrap,
  .guarantee-header-text,
  .guarantee-card-wrap,
  .capacity-cta-box,
  .section-header,
  .features-header-stitch,
  .about-founders-header,
  .about-founder-card-stitch,
  .about-founders-unified-stitch,
  .why-header,
  .capacity-header-stitch {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Accessibility: respect reduced-motion preference */
@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;
  }

  /* Ensure scroll-reveal elements are always visible */
  .problem-card-stitch,
  .feature-card-stitch,
  .capacity-card-stitch,
  .core-mobile-item,
  .core-mobile-core,
  .comparison-card-left,
  .comparison-card-right,
  .roi-section-stitch,
  .core-premium,
  .diagnosis-box-stitch,
  .guarantee-icon-wrap,
  .guarantee-header-text,
  .guarantee-card-wrap,
  .capacity-cta-box,
  .section-header,
  .features-header-stitch,
  .about-founders-header,
  .about-founder-card-stitch,
  .about-founders-unified-stitch,
  .why-header,
  .capacity-header-stitch {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Pause all looping animations */
  .core-orbit-desktop,
  .core-mobile-wheel-track,
  .core-mobile-wheel-node-inner,
  .animate-core-pulse,
  .core-premium::before,
  .core-premium-inner::before,
  .features-title-stitch::after,
  .about-founders-title::after,
  .about-founders-grid-bg,
  .about-founders-unified,
  .about-founders-lead::before,
  .guarantee-icon-wrap,
  .whatsapp-float {
    animation: none !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   PREMIUM INTERACTIVE TEXT HOVER
   — All text elements: headings slide right, paragraphs lift up
   — Desktop / pointer devices only (mouse users)
   ───────────────────────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {

  /* ────────────────────────────────────────────
     GROUP 1: HEADINGS & TITLES
     → slide right 4-5px + golden glow
  ──────────────────────────────────────────── */
  .hero-title,
  .hero-title span,
  .features-title-stitch,
  .features-lead-title-stitch,
  .about-founders-title,
  .why-title,
  .capacity-title-stitch,
  .guarantee-title-stitch,
  .section-title,
  .capacity-cta-title,
  .core-premium-text h2,
  .diagnosis-box-stitch h3,
  .diagnosis-box-stitch .diagnosis-title,
  .roi-section-stitch h2,
  .comparison-card-label,
  .comparison-card-title {
    cursor: pointer;
    /* NO display:inline-block — these are block elements, transform works natively */
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                text-shadow 0.22s ease;
  }

  /* hero-title span IS inline — needs inline-block */
  .hero-title span {
    display: inline-block;
  }

  .hero-title:hover,
  .hero-title span:hover { transform: translateX(5px); text-shadow: 0 0 32px rgba(255,193,7,0.22); }
  .features-title-stitch:hover,
  .features-lead-title-stitch:hover,
  .about-founders-title:hover,
  .why-title:hover,
  .capacity-title-stitch:hover,
  .guarantee-title-stitch:hover,
  .section-title:hover,
  .capacity-cta-title:hover,
  .core-premium-text h2:hover,
  .diagnosis-box-stitch h3:hover,
  .comparison-card-label:hover,
  .comparison-card-title:hover { transform: translateX(5px); text-shadow: 0 0 24px rgba(255,193,7,0.22); }

  /* ────────────────────────────────────────────
     GROUP 2: CARD TITLES (h3, h4 inside cards)
     → slide right 4px + subtle glow
  ──────────────────────────────────────────── */
  .feature-card-title,
  .capacity-card-title,
  .core-module-card h4,
  .core-mobile-core h3,
  .core-mobile-item h4,
  .problem-card-stitch h3,
  .core-section-stitch h2,
  .comparison-card-stitch h3,
  .about-founders-lead {
    cursor: pointer;
    /* Block-level — no display:inline-block needed */
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                text-shadow 0.22s ease;
  }

  .feature-card-title:hover,
  .capacity-card-title:hover,
  .core-module-card h4:hover,
  .core-mobile-core h3:hover,
  .core-mobile-item h4:hover,
  .problem-card-stitch h3:hover,
  .comparison-card-stitch h3:hover,
  .about-founders-lead:hover {
    transform: translateX(4px);
    text-shadow: 0 0 14px rgba(255,193,7,0.2);
  }

  /* ────────────────────────────────────────────
     GROUP 3: TAGS, PILLS, LABELS
     → slide right + stronger glow (small elements)
  ──────────────────────────────────────────── */
  .section-tag,
  .capacity-tag,
  .why-tag,
  .section-tag-pill,
  .capacity-tag-pill,
  .core-premium-label,
  .guarantee-tagline-stitch,
  .core-center-title,
  .stat-label,
  .hero-stat-label,
  .footer-source,
  .footer-status,
  .roi-metric-label,
  .chart-projection-title {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                text-shadow 0.2s ease,
                color 0.2s ease;
  }

  .section-tag:hover,
  .capacity-tag:hover,
  .why-tag:hover,
  .section-tag-pill:hover,
  .capacity-tag-pill:hover,
  .core-premium-label:hover { transform: translateX(4px); text-shadow: 0 0 14px rgba(255,193,7,0.3); }
  .guarantee-tagline-stitch:hover { transform: translateX(5px); text-shadow: 0 0 20px rgba(255,193,7,0.25); }
  .core-center-title:hover { transform: scale(1.06); text-shadow: 0 0 12px rgba(255,193,7,0.35); }
  .stat-label:hover,
  .hero-stat-label:hover,
  .roi-metric-label:hover,
  .chart-projection-title:hover { transform: translateX(3px); color: rgba(255,193,7,0.8); }

  /* ────────────────────────────────────────────
     GROUP 4: STAT & METRIC NUMBERS
     → pop up + golden glow
  ──────────────────────────────────────────── */
  .stat-value,
  .hero-stat-value,
  .roi-metric-value,
  .chart-projection-value,
  .dashboard-value,
  .floating-value {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                text-shadow 0.2s ease;
  }

  .stat-value:hover,
  .hero-stat-value:hover,
  .roi-metric-value:hover,
  .chart-projection-value:hover,
  .dashboard-value:hover,
  .floating-value:hover {
    transform: translateY(-3px) scale(1.04);
    text-shadow: 0 4px 20px rgba(255,193,7,0.32);
  }

  /* ────────────────────────────────────────────
     GROUP 5: PARAGRAPHS & DESCRIPTIONS
     → block elements: subtle upward lift (no translateX)
     → cursor pointer + brightness bump
  ──────────────────────────────────────────── */
  .feature-card-desc,
  .capacity-card-desc,
  .problem-card-stitch p,
  .core-module-card p,
  .core-mobile-core p,
  .core-mobile-item p,
  .core-premium-text p,
  .guarantee-card-intro,
  .guarantee-card-commitment,
  .guarantee-card-note,
  .hero-subtitle,
  .section-subtitle,
  .why-subtitle,
  .features-lead-desc-stitch,
  .about-founder-text,
  .about-founders-unified-text,
  .capacity-desc-stitch,
  .comparison-card-desc,
  .comparison-item-text,
  .capacity-cta-desc,
  .footer-copy,
  .diagnosis-box-stitch p,
  .roi-intro,
  .dashboard-footer .footer-status,
  .floating-header,
  .guarantee-card-note {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease;
  }

  .feature-card-desc:hover,
  .capacity-card-desc:hover,
  .problem-card-stitch p:hover,
  .core-module-card p:hover,
  .core-mobile-core p:hover,
  .core-mobile-item p:hover,
  .core-premium-text p:hover,
  .guarantee-card-intro:hover,
  .guarantee-card-commitment:hover,
  .guarantee-card-note:hover,
  .hero-subtitle:hover,
  .section-subtitle:hover,
  .why-subtitle:hover,
  .features-lead-desc-stitch:hover,
  .about-founder-text:hover,
  .about-founders-unified-text:hover,
  .capacity-desc-stitch:hover,
  .comparison-card-desc:hover,
  .comparison-item-text:hover,
  .capacity-cta-desc:hover,
  .footer-copy:hover,
  .diagnosis-box-stitch p:hover,
  .roi-intro:hover {
    transform: translateY(-1px);
    color: rgba(255,255,255,0.88);
  }

  /* ────────────────────────────────────────────
     GROUP 6: NAV & FOOTER LINKS
     → lift + golden tint
  ──────────────────────────────────────────── */
  .nav-item-label,
  .mobile-nav-link,
  .footer-links a,
  .logo-text-stitch,
  .footer-logo {
    cursor: pointer;
    transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.18s ease,
                text-shadow 0.18s ease;
    display: inline-block;
  }

  .nav-item-label:hover,
  .mobile-nav-link:hover {
    transform: translateY(-1px);
    color: #ffe082;
    text-shadow: 0 0 10px rgba(255,193,7,0.25);
  }

  .footer-links a:hover {
    transform: translateY(-2px);
    color: rgba(255,193,7,0.85);
    text-shadow: 0 0 10px rgba(255,193,7,0.2);
  }

  .logo-text-stitch:hover {
    transform: translateX(2px);
    text-shadow: 0 0 14px rgba(255,193,7,0.25);
  }

  /* ────────────────────────────────────────────
     GROUP 7: COMPARISON LIST ITEMS
  ──────────────────────────────────────────── */
  .comparison-item,
  .comparison-item span,
  .capacity-cta-pill span {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease;
    display: inline-block;
  }

  .comparison-item:hover,
  .comparison-item span:hover { transform: translateX(3px); }
  .capacity-cta-pill span:hover { transform: translateX(2px); color: rgba(255,193,7,0.9); }

  /* ────────────────────────────────────────────
     GROUP 8: HERO STATS (shield / schedule / analytics)
     → whole pill slides right, icon wobbles, texts lift
  ──────────────────────────────────────────── */
  .stat-item {
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.22s ease;
  }

  .stat-item:hover {
    transform: translateX(5px);
  }

  /* Icon inside stat pill — wobble via CSS */
  .stat-item:hover .stat-icon {
    animation: kb-icon-wobble 0.4s ease;
    color: var(--primary);
  }

  /* "Satış Baskısı Yok" / "Ön Değerlendirme" text */
  .stat-text {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease;
  }
  .stat-item:hover .stat-text {
    color: rgba(255, 255, 255, 0.95);
  }

  /* "45 DK" big number */
  .stat-value-big {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                text-shadow 0.2s ease;
  }
  .stat-item:hover .stat-value-big {
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 0 16px rgba(255, 193, 7, 0.4);
  }

  /* "Süre" small label */
  .stat-label-small {
    cursor: pointer;
    display: inline-block;
    transition: color 0.2s ease;
  }
  .stat-item:hover .stat-label-small {
    color: rgba(255, 193, 7, 0.75);
  }

  /* ── "Sınırlı kontenjan ile sunulmaktadır." ── */
  .core-premium-note {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease,
                text-shadow 0.2s ease;
  }
  .core-premium-note:hover {
    transform: translateY(-1px);
    color: rgba(255, 193, 7, 0.7);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.15);
  }

  /* ────────────────────────────────────────────
     GROUP 9: HERO TAG + HERO DESC
  ──────────────────────────────────────────── */
  .tag-text {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease,
                letter-spacing 0.2s ease;
  }
  .tag-text:hover {
    transform: translateX(4px);
    color: rgba(255, 193, 7, 0.9);
  }

  .hero-desc,
  .hero-desc-stitch {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease;
  }
  .hero-desc:hover,
  .hero-desc-stitch:hover {
    transform: translateY(-1px);
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-desc-bold {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.18s ease;
  }
  .hero-desc-bold:hover {
    transform: translateY(-1px) scale(1.02);
    color: rgba(255, 193, 7, 0.9);
  }

  /* ────────────────────────────────────────────
     GROUP 10: DASHBOARD ELEMENTS
     "Q3 Hedef Metrikleri" + "15%"
  ──────────────────────────────────────────── */
  .dashboard-label {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease;
  }
  .dashboard-label:hover {
    transform: translateX(3px);
    color: rgba(255, 255, 255, 0.9);
  }

  .dashboard-trend-pct,
  .dashboard-trend-label {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                text-shadow 0.2s ease;
  }
  .dashboard-trend-pct:hover {
    transform: translateY(-2px) scale(1.06);
    text-shadow: 0 0 14px rgba(255, 193, 7, 0.4);
  }

  /* ────────────────────────────────────────────
     GROUP 11: COMPARISON CARD HEADERS
     Geleneksel Yaklaşım / KlinikBoost Sistemi
     Parçalı & Kaotik / Entegre Sistem
     Mevcut Durum / Hedeflenen Durum badges
  ──────────────────────────────────────────── */
  .card-label-stitch,
  .card-title {
    cursor: pointer;
    /* Removed display: inline-block to prevent side-by-side layout bug */
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease,
                text-shadow 0.2s ease;
  }
  .card-label-stitch:hover {
    transform: translateX(4px);
    text-shadow: 0 0 14px rgba(255, 193, 7, 0.2);
  }
  .card-title:hover {
    transform: translateX(3px);
    color: rgba(255, 255, 255, 0.9);
  }

  .card-badge {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.2s ease;
  }
  .card-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  /* ────────────────────────────────────────────
     GROUP 12: COMPARISON LIST ITEMS (li)
     close/check_circle + text
  ──────────────────────────────────────────── */
  .comparison-list li {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease;
  }
  .comparison-list li:hover {
    transform: translateX(5px);
  }
  .comparison-list li:hover span:last-child {
    color: rgba(255, 255, 255, 0.92);
  }
  /* Icon wobble on list item hover */
  .comparison-list li:hover .comparison-icon {
    animation: kb-icon-wobble 0.4s ease;
  }

  /* ────────────────────────────────────────────
     GROUP 13: CARD FOOTER ROWS
     "Yüksek Operasyonel Efor" / "Sürdürülebilir Kârlılık"
  ──────────────────────────────────────────── */
  .card-footer {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.2s ease;
  }
  .card-footer:hover {
    transform: translateX(4px);
  }
  .card-footer:hover span {
    text-shadow: 0 0 10px currentColor;
  }
  .card-footer:hover .material-symbols-outlined {
    animation: kb-icon-wobble 0.4s ease;
  }

  /* ────────────────────────────────────────────
     GROUP 14: ROI SECTION
     Yatırımın Geri Dönüşü başlığı, açıklama, değer
  ──────────────────────────────────────────── */
  .roi-title {
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                text-shadow 0.22s ease;
  }
  .roi-title:hover {
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
  }

  .roi-desc {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease;
  }
  .roi-desc:hover {
    transform: translateY(-1px);
    color: rgba(255, 255, 255, 0.88);
  }

  .roi-highlight-inline,
  .highlight {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
                text-shadow 0.18s ease;
  }
  .roi-highlight-inline:hover,
  .highlight:hover {
    transform: translateY(-2px) scale(1.03);
    text-shadow: 0 0 12px rgba(255, 193, 7, 0.35);
  }

  /* ────────────────────────────────────────────
     GROUP 15: PROBLEM CARDS & DIAGNOSIS DETAILS
  ──────────────────────────────────────────── */
  .problem-card-stitch h3,
  .problem-card-stitch p,
  .diagnosis-box-stitch h3,
  .diagnosis-box-stitch p,
  .diagnosis-label,
  .diagnosis-quote,
  .diagnosis-quote span {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease,
                text-shadow 0.2s ease;
  }
  .problem-card-stitch:hover h3 { transform: translateX(4px); }
  .problem-card-stitch:hover p { transform: translateY(-1px); color: rgba(255, 255, 255, 0.85); }
  .diagnosis-label:hover { transform: translateX(3px); color: var(--primary); }
  .diagnosis-quote:hover { transform: translateY(-1px); color: #fff; }

  /* ────────────────────────────────────────────
     GROUP 16: GUARANTEE & CAPACITY DEPTH
  ──────────────────────────────────────────── */
  .guarantee-title-stitch,
  .guarantee-tagline-stitch,
  .guarantee-card-intro,
  .guarantee-card-commitment,
  .guarantee-card-note,
  .capacity-title-stitch,
  .capacity-desc-stitch,
  .capacity-desc-strong,
  .capacity-card-title,
  .capacity-card-desc,
  .capacity-cta-title,
  .capacity-cta-desc,
  .capacity-cta-highlight,
  .capacity-cta-btn-text {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease,
                text-shadow 0.2s ease;
  }
  .guarantee-title-stitch:hover { transform: translateX(5px); text-shadow: 0 0 20px rgba(255,193,7,0.3); }
  .guarantee-tagline-stitch:hover { transform: translateX(4px); color: var(--primary); }
  .guarantee-card-intro:hover, 
  .guarantee-card-commitment:hover { transform: translateY(-1px); color: #fff; }
  
  .capacity-title-stitch:hover { transform: translateX(5px); }
  .capacity-desc-stitch:hover { transform: translateY(-1px); }
  .capacity-card-title:hover { transform: translateX(4px); color: var(--primary); }
  .capacity-cta-title:hover { transform: translateX(4px); }
  .capacity-cta-desc:hover { transform: translateY(-1px); }

  /* ────────────────────────────────────────────
     GROUP 17: FOOTER & MISC
  ──────────────────────────────────────────── */
  .footer-copy,
  .footer-links a,
  .back-to-top span {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
  }
  .footer-copy:hover { transform: translateY(-1px); color: rgba(255,255,255,0.8); }
  .footer-links a:hover { transform: translateY(-2px); color: var(--primary); }

  /* ────────────────────────────────────────────
     GROUP 18: SYSTEM ARCHITECTURE (ORBIT) LABELS
  ──────────────────────────────────────────── */
  .core-module-card h4,
  .core-module-card p,
  .core-mobile-item h4,
  .core-mobile-item p,
  .core-center-title,
  .core-premium-text h2,
  .core-premium-text p {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease;
  }
  .core-module-card:hover h4,
  .core-mobile-item:hover h4 { transform: translateX(4px); color: var(--primary); }
}

/* ─── Stratejik analiz modal (Calendly öncesi form) ─────────── */
.analiz-modal[hidden] {
  display: none !important;
}

body.analiz-modal-open {
  overflow: hidden;
}

.analiz-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

.analiz-modal-backdrop {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  max-height: 100%;
  align-self: stretch;
  justify-self: stretch;
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.analiz-modal-panel {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 38rem;
  max-height: min(92vh, 52rem);
  overflow-y: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 193, 7, 0.22);
  background: linear-gradient(165deg, #1a1c22 0%, #12141a 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 48px rgba(255, 193, 7, 0.06);
}

.analiz-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 1.35rem 3rem 1rem 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(to bottom, #181a20, rgba(15, 17, 21, 0.96));
}

.analiz-modal-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.analiz-modal-lead {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(163, 163, 163, 0.95);
  max-width: 32rem;
}

.analiz-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: #e5e5e5;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.analiz-modal-close:hover {
  background: rgba(255, 193, 7, 0.1);
  color: var(--primary);
}

.analiz-modal-close .material-symbols-outlined {
  font-size: 22px;
}

.analiz-form {
  padding: 1.25rem 1.35rem 1.5rem;
}

.analiz-form-error {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.analiz-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.analiz-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 520px) {
  .analiz-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .analiz-field-span2 {
    grid-column: span 2;
  }
}

.analiz-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
}

.analiz-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #d4d4d4;
}

.analiz-optional {
  font-weight: 500;
  color: rgba(163, 163, 163, 0.95);
}

.analiz-field input[type="text"],
.analiz-field input[type="tel"],
.analiz-field input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 14, 0.85);
  color: #f5f5f5;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.analiz-field input:focus {
  outline: none;
  border-color: rgba(255, 193, 7, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.12);
}

.analiz-fieldset {
  margin: 0 0 1.15rem;
  padding: 0;
  border: 0;
  min-width: 0;
}

.analiz-legend {
  display: block;
  width: 100%;
  margin: 0 0 0.55rem;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f5f5f5;
  line-height: 1.4;
}

.analiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.02);
}

.analiz-options--stack .analiz-radio {
  align-items: flex-start;
}

.analiz-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #a3a3a3;
  cursor: pointer;
}

.analiz-radio input {
  accent-color: var(--primary);
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.analiz-form-actions {
  margin-top: 1.25rem;
  padding-top: 0.25rem;
}

.analiz-submit {
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.analiz-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.analiz-submit-icon {
  font-size: 1.25rem;
}

@media (max-width: 519px) {
  .analiz-modal-panel {
    max-height: calc(100vh - 2rem);
  }

  .analiz-modal-header {
    padding-right: 2.75rem;
  }
}