/* ==========================================================================
   Softplay360 — Master CSS (Kusursuz Grid, Tipografi, Odoo Mor Bloklar & GSAP)
   ========================================================================== */

@import url('./tokens.css');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&subset=latin,latin-ext&display=swap');

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: #FFFFFF;
  color: #141414;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid #6C2BD9;
  outline-offset: 2px;
}

/* ==========================================================================
   Odoo 1:1 Kavisli Mor Bloklar & Dairesel Zeminler
   ========================================================================== */

.odoo-curved-block {
  background-color: #F5EEFD;
  border-radius: 44px;
  padding: 56px 40px;
  margin: 20px auto 40px auto;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .odoo-curved-block {
    padding: 36px 20px;
    border-radius: 32px;
    margin: 16px auto 32px auto;
  }
}

@media (max-width: 576px) {
  .odoo-curved-block {
    padding: 28px 14px;
    border-radius: 24px;
  }
}

/* Odoo Vitrin Arkası Dairesel Organik Leke */
.odoo-blob-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.odoo-organic-blob {
  position: absolute;
  width: 520px;
  height: 520px;
  max-width: 95%;
  background: #F5EEFD;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .odoo-organic-blob {
    width: 280px;
    height: 280px;
    filter: blur(28px);
  }
}

/* ==========================================================================
   Tipografi Hiyerarşisi — Caveat SADECE H1 ve H2 Başlıklarda
   ========================================================================== */

h1, h2, .display-1, .display-2 {
  font-family: 'Caveat', cursive, sans-serif !important;
  color: #141414;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

h3, h4, h5, h6, .display-3, .app-title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
  color: #141414;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.display-1 {
  font-size: clamp(2.2rem, 6.5vw, 4.5rem);
  line-height: 1.15;
  font-weight: 700;
}

.display-2 {
  font-size: clamp(1.85rem, 5vw, 3.5rem);
  line-height: 1.18;
  font-weight: 700;
}

.display-3 {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  line-height: 1.3;
  font-weight: 700;
}

.lead {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: #52525B;
  font-weight: 400;
}

.text-brand-purple { color: #6C2BD9 !important; }
.text-brand-amber { color: #F49E0F !important; }
.text-muted { color: #71717A !important; }

/* El Çizimi ve Fosfor Vurguları */
.doodle-font, .x_wd_doodle {
  font-family: 'Caveat', cursive;
  color: #F49E0F;
  font-weight: 700;
  font-size: clamp(1.2rem, 3.5vw, 1.45rem);
  line-height: 1.2;
}

.highlight-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 10px;
  background: url('../img/doodles/underline.svg') no-repeat center bottom / 100% 100%;
  pointer-events: none;
}

.highlight-yellow {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-yellow::after {
  content: '';
  position: absolute;
  left: -3%;
  bottom: 2px;
  width: 106%;
  height: 38%;
  background-color: #FDF0D4;
  z-index: -1;
  border-radius: 4px;
}

/* İkon Rozetleri */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F7F3FE;
  color: #6C2BD9;
  margin-bottom: 16px;
  transition: transform 150ms ease;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

/* Görsel Vitrin Çerçevesi */
.showcase-wrapper {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.showcase-frame {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 64px rgba(108, 43, 217, 0.12), 0 8px 24px rgba(20, 20, 30, 0.04);
  background: #FFFFFF;
  overflow: hidden;
}

.showcase-frame img,
.showcase-frame video,
.showcase-frame iframe {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Grid & Layout Sistemi (Kaya Gibi Sağlam 12'li Bootstrap Grid)
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  box-sizing: border-box;
}

[class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
  box-sizing: border-box;
}

.col-6 { width: 50%; }

@media (min-width: 576px) {
  .col-sm-6 { width: 50%; }
}

@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333333%; }
  .col-lg-12 { width: 100%; }
}

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.text-center { text-align: center; }
.text-start { text-align: left; }
.text-end { text-align: right; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 24px; }
.mb-6 { margin-bottom: 32px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; }
.mt-6 { margin-top: 32px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }
.py-7 { padding-top: 72px; padding-bottom: 72px; }

@media (max-width: 767px) {
  .py-7 { padding-top: 44px; padding-bottom: 44px; }
  .py-5 { padding-top: 28px; padding-bottom: 28px; }
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: #6C2BD9;
  color: #FFFFFF !important;
  border-color: #6C2BD9;
  box-shadow: 0 4px 14px rgba(108, 43, 217, 0.22);
}

.btn-primary:hover {
  background-color: #5B21B6;
  border-color: #5B21B6;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(108, 43, 217, 0.18);
}

.btn-accent {
  background-color: #F49E0F;
  color: #141414 !important;
  border-color: #F49E0F;
  box-shadow: 0 4px 14px rgba(244, 158, 15, 0.25);
}

.btn-accent:hover {
  background-color: #D98707;
  border-color: #D98707;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 158, 15, 0.35);
}

.btn-outline {
  background-color: #FFFFFF;
  color: #6C2BD9 !important;
  border-color: #DFDFE6;
  box-shadow: 0 2px 8px rgba(20, 20, 30, 0.04);
}

.btn-outline:hover {
  background-color: #F7F3FE;
  border-color: #6C2BD9;
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }

@media (max-width: 576px) {
  .btn-lg {
    width: 100%;
    padding: 15px 20px;
    font-size: 15.5px;
  }
}

/* Header & Navigasyon */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #EDEDF2;
  transition: box-shadow 250ms ease;
  width: 100%;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(20, 20, 30, 0.05);
}

.navbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

@media (max-width: 767px) {
  .navbar-main {
    height: 60px;
  }
  .brand-logo img {
    height: 32px;
  }
}

.brand-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #141414;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms ease;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 0;
}

.nav-link:hover, .nav-link.active {
  color: #6C2BD9;
}

/* Mega Menü */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -240px;
  width: 980px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(20, 20, 30, 0.12);
  border: 1px solid #EDEDF2;
  padding: 32px;
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}

.nav-item:hover .mega-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6C2BD9;
  margin-bottom: 14px;
  border-bottom: 1px solid #EFE7FD;
  padding-bottom: 6px;
}

.mega-menu-list {
  list-style: none;
}

.mega-menu-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: #52525B;
  font-size: 14px;
  text-decoration: none;
  transition: all 150ms ease;
}

.mega-menu-item a:hover {
  color: #6C2BD9;
  font-weight: 600;
  transform: translateX(4px);
}

/* ==========================================================================
   App Grid & Organik Kaos Doodles
   ========================================================================== */

.app-grid-section {
  padding: 20px 0 40px 0;
  overflow: visible;
}

.app-grid-wrapper {
  position: relative;
  padding: 36px 0 44px 0;
  width: 100%;
}

#softplayAppGrid .col-6,
#softplayAppGrid .col-md-4,
#softplayAppGrid .col-lg-2 {
  margin-bottom: 48px;
  position: relative;
}

@media (max-width: 576px) {
  #softplayAppGrid .col-6 {
    margin-bottom: 34px;
  }
}

.app-entry {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 4px;
  border-radius: 20px;
  background: transparent;
  transition: transform 250ms ease;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

.app-entry:hover {
  transform: translateY(-4px);
}

.app-icon-img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 8px;
  transition: transform 250ms ease;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .app-icon-img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
}

.app-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #141414;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* El Çizimi Ok ve Alternatif Araç Kutuları */
.chaos-item-doodle {
  display: none;
  position: absolute;
  pointer-events: none;
  z-index: 10;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.25rem;
  color: #4A1D96;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

@media (max-width: 576px) {
  .chaos-item-doodle {
    font-size: 1.05rem;
  }
}

/* Üst Sıra */
.chaos-item-doodle.doodle-top {
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

/* Alt Sıra */
.chaos-item-doodle.doodle-bottom {
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.chaos-mode-active .chaos-item-doodle {
  display: flex !important;
  animation: doodlePopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes doodlePopIn {
  from { opacity: 0; transform: translateX(-50%) scale(0.9); }
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}

/* Switcher */
.custom-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid #DFDFE6;
  box-shadow: 0 2px 8px rgba(20, 20, 30, 0.04);
  cursor: pointer;
  user-select: none;
  transition: all 150ms ease;
}

.custom-switch:hover {
  box-shadow: 0 8px 24px rgba(20, 20, 30, 0.06);
  border-color: #6C2BD9;
}

.switch-input {
  display: none;
}

.switch-slider {
  width: 44px;
  height: 24px;
  background: #DFDFE6;
  border-radius: 999px;
  position: relative;
  transition: background 0.3s ease;
}

.switch-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  top: 3px;
  left: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.switch-input:checked + .switch-slider {
  background: #DC2626;
}

.switch-input:checked + .switch-slider::before {
  transform: translateX(20px);
}

/* Bento Grid Kartları */
.bento-card {
  background: #FFFFFF;
  border: 1px solid #EDEDF2;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(20, 20, 30, 0.04);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  height: 100%;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 20, 30, 0.08);
  border-color: #DFDFE6;
}

@media (max-width: 576px) {
  .bento-card {
    padding: 22px 18px;
  }
}

/* SSS Akordeon */
.faq-item {
  background: #FFFFFF;
  border: 1px solid #EDEDF2;
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(20, 20, 30, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-question {
  padding: 20px 24px;
  font-size: 16.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: color 0.2s ease;
}

@media (max-width: 576px) {
  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }
}

.faq-question:hover {
  color: #6C2BD9;
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
  padding: 0 24px;
  color: #52525B;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0;
  transition: opacity 0.3s ease, padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  opacity: 1;
  padding: 0 24px 22px 24px;
}

@media (max-width: 576px) {
  .faq-answer {
    padding: 0 18px;
    font-size: 14px;
  }
  .faq-item.active .faq-answer {
    padding: 0 18px 18px 18px;
  }
}

.faq-icon {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 22px;
  color: #6C2BD9;
  line-height: 1;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active {
  border-color: #6C2BD9;
  box-shadow: 0 8px 24px rgba(20, 20, 30, 0.06);
}

/* Form Elemanları */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #141414;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid #DFDFE6;
  border-radius: 16px;
  background-color: #FFFFFF;
  color: #141414;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-control:focus {
  outline: none;
  border-color: #6C2BD9;
  box-shadow: 0 0 0 3px #EFE7FD;
}

textarea.form-control {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

/* ==========================================================================
   İletişim Formu ve Başarı Kartı (Zero Layout Shift / Sabit Yükseklik)
   ========================================================================== */

.demo-form-card {
  background: #FFFFFF;
  border: 1px solid #EDEDF2;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 24px rgba(20, 20, 30, 0.06);
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .demo-form-card {
    padding: 24px 18px;
    min-height: 520px;
  }
}

.form-initial-view {
  width: 100%;
}

.form-success-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 470px;
  padding: 10px 8px;
  box-sizing: border-box;
}

.success-check-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: #ECFDF3;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.2);
}

.success-check-badge svg {
  width: 38px;
  height: 38px;
  stroke: #16A34A;
  stroke-width: 3;
}

.btn-whatsapp-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  background-color: #25D366;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 24px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 200ms ease, box-shadow 200ms ease;
  margin-top: 24px;
  margin-bottom: 14px;
}

.btn-whatsapp-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-reset-form {
  background: none;
  border: none;
  color: #6C2BD9;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px 12px;
  transition: opacity 150ms ease;
}

.btn-reset-form:hover {
  opacity: 0.8;
}

/* ==========================================================================
   İlişkili Modüller Buton & Kart Tasarımı (UI/UX Pro Max + GSAP)
   ========================================================================== */

.related-module-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: #FFFFFF;
  border: 1.5px solid #E5E5EA;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(20, 20, 30, 0.04);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  height: 100%;
  cursor: pointer;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .related-module-card {
    padding: 16px 18px;
  }
}

.related-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #F7F3FE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.related-card-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.related-card-title {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #141414;
  line-height: 1.3;
  margin-bottom: 3px;
  transition: color 200ms ease;
}

.related-card-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #6C2BD9;
}

.card-arrow-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F7F3FE;
  color: #6C2BD9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(108, 43, 217, 0.08);
}

.related-module-card:hover {
  border-color: #6C2BD9;
  box-shadow: 0 12px 30px rgba(108, 43, 217, 0.12);
  transform: translateY(-3px);
}

.related-module-card:hover .related-card-title {
  color: #6C2BD9;
}

.related-module-card:hover .card-arrow-badge {
  background: #6C2BD9;
  color: #FFFFFF;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(108, 43, 217, 0.3);
}

.related-module-card:hover .related-card-icon {
  transform: scale(1.06);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: #25D366;
  color: #FFFFFF;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  transition: transform 150ms ease, box-shadow 150ms ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

/* Footer (Tamamen Koyu Siyah Zemin & Yüksek Kontrast) */
.site-footer {
  background-color: #141418 !important;
  color: #FFFFFF !important;
  padding: 56px 0 28px 0;
  position: relative;
  z-index: 10;
  width: 100%;
}

.site-footer a {
  color: #A1A1AA !important;
  transition: color 0.2s ease;
  text-decoration: none;
}

.site-footer a:hover {
  color: #FFFFFF !important;
}

/* Sayfa İçi ve Sayfalar Arası Çapa (Anchor) Boşluğu */
section[id], #iletisim, #moduller, #problem, #farkimiz, #nasil-basliyoruz, #sss {
  scroll-margin-top: 84px;
}

/* Responsive Kontroller & Mobil Çekmece */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #141414;
    padding: 6px;
  }
  .mega-menu { display: none !important; }
}

@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
}
@media (min-width: 992px) {
  .col-lg-7th {
    width: 14.285714% !important;
    flex: 0 0 14.285714% !important;
    max-width: 14.285714% !important;
  }
}



.callout-problem-box {
  margin-bottom: 6px;
}

.callout-problem-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #3F3F46;
  margin: 0 auto;
  font-weight: 400;
}

.callout-problem-text strong {
  font-weight: 700;
  color: #18181B;
}

.callout-arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0 12px 0;
}

.callout-doodle-arrow {
  width: 32px;
  height: 42px;
  display: block;
}

.callout-solution-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: #FFFFFF;
  border: 1.5px solid #6C2BD9;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(108, 43, 217, 0.08);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-pill-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(108, 43, 217, 0.18);
  border-color: #581C87;
  background: #FAF7FE;
}

.solution-pill-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.solution-pill-text {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.45rem;
  color: #4A1D96;
  line-height: 1;
  letter-spacing: 0.01em;
}

@media (min-width: 992px) {
  .col-lg-7th {
    width: 14.285714% !important;
    flex: 0 0 14.285714% !important;
    max-width: 14.285714% !important;
  }
}


/* ==========================================================================
   Doğal & Temaya Sadık "Sorun ➔ Çözüm" Vitrin Kartı (UI/UX Pro Max)
   ========================================================================== */

.problem-solution-card {
  background: linear-gradient(180deg, #FAF7FE 0%, #FFFFFF 100%);
  border: 1.5px solid #EFE7FD;
  border-radius: 20px;
  padding: 32px 28px;
  margin: 0 auto;
  max-width: 860px;
  box-shadow: 0 12px 32px rgba(108, 43, 217, 0.05);
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

.problem-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: #FFF1F2;
  border: 1px solid #FFE4E6;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: #E11D48;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.status-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E11D48;
  display: inline-block;
}

.problem-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #3F3F46;
  margin: 0 auto 10px auto;
  max-width: 760px;
}

.problem-card-desc strong {
  font-weight: 700;
  color: #18181B;
}

.problem-card-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0 12px 0;
}

.doodle-arrow-img {
  width: 36px;
  height: 46px;
  display: block;
}

.problem-card-solution {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-pill-clean {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: #FFFFFF;
  border: 1.5px solid #6C2BD9;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(108, 43, 217, 0.1);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-pill-clean:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 43, 217, 0.18);
  border-color: #581C87;
  background: #FAF7FE;
}

.solution-pill-title {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.5rem;
  color: #4A1D96;
  line-height: 1;
  letter-spacing: 0.01em;
}

@media (max-width: 576px) {
  .problem-solution-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .problem-card-desc {
    font-size: 1rem;
  }
  .solution-pill-title {
    font-size: 1.3rem;
  }
  .solution-pill-clean {
    padding: 8px 16px;
  }
}

/* ==========================================================================
   Odoo Tarzı Görsel Hikaye Anlatımı & Zig-Zag Vitrin (UI/UX Pro Max)
   ========================================================================== */

.odoo-story-section {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.odoo-story-section.bg-light-purple {
  background: #FAF7FE;
}

.odoo-story-section.bg-white {
  background: #FFFFFF;
}

.story-row {
  display: flex;
  align-items: center;
  gap: 56px;
}

.story-row.reverse {
  flex-direction: row-reverse;
}

.story-col-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.story-col-mockup {
  flex: 1 1 55%;
  min-width: 300px;
  position: relative;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: #FFFFFF;
  border: 1px solid #EFE7FD;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #6C2BD9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.story-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #18181B;
  line-height: 1.25;
  margin-bottom: 20px;
}

.story-title .handwritten {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: #4A1D96;
  font-size: 2.5rem;
}

.story-desc {
  font-size: 1.1rem;
  color: #52525B;
  line-height: 1.65;
  margin-bottom: 28px;
}

.story-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.story-feature-item {
  position: relative;
  padding-left: 24px;
}

.story-feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6C2BD9;
}

.story-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 4px;
}

.story-feature-desc {
  font-size: 0.95rem;
  color: #71717A;
  line-height: 1.55;
  margin: 0;
}

/* Mockup Frame & Backdrop Blob */
.story-mockup-wrapper {
  position: relative;
  z-index: 2;
}

.story-backdrop-blob {
  position: absolute;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  background: radial-gradient(circle, rgba(108, 43, 217, 0.08) 0%, rgba(245, 238, 253, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.story-mockup-card {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid rgba(228, 228, 231, 0.8);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(108, 43, 217, 0.08), 0 8px 24px rgba(24, 24, 27, 0.03);
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.story-mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(108, 43, 217, 0.12);
}

.story-mockup-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* El Çizimi Açıklama (Annotation) */
.story-annotation {
  position: absolute;
  z-index: 5;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.35rem;
  color: #4A1D96;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  white-space: nowrap;
}

.story-annotation.top-left {
  top: -24px;
  left: 20px;
}

.story-annotation.bottom-right {
  bottom: -20px;
  right: 20px;
}

/* Net Faydalar Kutusu (ROI Box) */
.story-roi-box {
  background: linear-gradient(135deg, #FAF7FE 0%, #FFFFFF 100%);
  border: 1.5px solid #EFE7FD;
  border-radius: 20px;
  padding: 36px 32px;
  margin-top: 48px;
  box-shadow: 0 12px 32px rgba(108, 43, 217, 0.04);
}

.story-roi-header {
  font-size: 1.25rem;
  font-weight: 800;
  color: #4A1D96;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-roi-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.story-roi-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #3F3F46;
  line-height: 1.55;
}

.story-roi-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: #10B981;
}

@media (max-width: 991px) {
  .story-row,
  .story-row.reverse {
    flex-direction: column;
    gap: 36px;
  }
  .story-title {
    font-size: 1.85rem;
  }
  .story-title .handwritten {
    font-size: 2.1rem;
  }
  .story-annotation {
    position: static;
    margin-top: 10px;
    justify-content: center;
  }
}

/* ==========================================================================
   Modül 1 Özel Tasarım Bileşenleri (Oyun Alanı Operasyon & Canlı Seans)
   ========================================================================== */

/* Yatay Süreç Şeridi (Process Strip - Referans Görsel 86) */
.step-process-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #FFFFFF;
  border: 1.5px solid #EFE7FD;
  border-radius: 999px;
  padding: 12px 28px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(108, 43, 217, 0.04);
}

.process-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #18181B;
}

.process-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F4EEFE;
  color: #6C2BD9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.process-step-divider {
  color: #D4D4D8;
  font-weight: 300;
}

/* Split-View Akış Alanı (Referans Görsel 84) */
.split-view-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 40px 0;
}

.split-view-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid rgba(228, 228, 231, 0.9);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(108, 43, 217, 0.06);
  padding: 24px;
  position: relative;
}

.split-view-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kutusuz Ferah Net Faydalar (Referans Görsel 91) */
.clean-roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
  padding: 40px 0;
  border-top: 1px solid #F4EEFE;
}

.clean-roi-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.clean-roi-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clean-roi-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 6px;
}

.clean-roi-desc {
  font-size: 0.95rem;
  color: #52525B;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991px) {
  .step-process-strip {
    flex-direction: column;
    border-radius: 20px;
    align-items: flex-start;
    padding: 20px;
  }
  .process-step-divider {
    display: none;
  }
  .split-view-flow {
    flex-direction: column;
    gap: 20px;
  }
  .split-view-arrow img {
    transform: rotate(90deg);
  }
}

/* ==========================================================================
   Organik Yuvarlak/Kavisli Gradyan Zeminler & Sticker Konumlandırma
   ========================================================================== */

.ambient-blob-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 43, 217, 0.08) 0%, rgba(244, 238, 254, 0.02) 65%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.ambient-blob-pill {
  position: absolute;
  width: 540px;
  height: 340px;
  border-radius: 160px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, rgba(254, 243, 199, 0.03) 60%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.ambient-blob-curved {
  position: absolute;
  width: 480px;
  height: 380px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: radial-gradient(circle, rgba(108, 43, 217, 0.07) 0%, rgba(239, 231, 253, 0.02) 70%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

/* Floating Sticker Badge */
.sticker-badge-wrapper {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.35rem;
  color: #18181B;
}

.sticker-badge-wrapper img {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}

/* ==========================================================================
   Modül 2 Özel Tasarım Bileşenleri (Satış Ekranı & POS)
   ========================================================================== */

/* Canlı Fırça / Highlighter Vurguları (Referans Görsel 95, 96, 97) */
.hl-yellow {
  background: #FDE68A;
  padding: 2px 10px;
  border-radius: 8px;
  color: #18181B;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hl-purple {
  background: #DDD6FE;
  padding: 2px 10px;
  border-radius: 8px;
  color: #18181B;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hl-mint {
  background: #A7F3D0;
  padding: 2px 10px;
  border-radius: 8px;
  color: #18181B;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hl-rose {
  background: #FECDD3;
  padding: 2px 10px;
  border-radius: 8px;
  color: #18181B;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Hub & Spoke Mimari Düzeni (Referans Görsel 97) */
.hub-spoke-container {
  position: relative;
  max-width: 960px;
  margin: 48px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.hub-center-card {
  flex: 1.2;
  background: #FFFFFF;
  border: 1.5px solid #EFE7FD;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(108, 43, 217, 0.08);
  position: relative;
  z-index: 3;
  text-align: left;
}

.hub-side-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hub-connector-card {
  background: #FFFFFF;
  border: 1px solid rgba(228, 228, 231, 0.9);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #18181B;
  position: relative;
}

.hub-connector-card img.hub-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Yüzen Avatar Rozeti (Referans Görsel 95) */
.floating-avatar-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1.5px solid #10B981;
  border-radius: 999px;
  padding: 6px 18px 6px 8px;
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.12);
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.2rem;
  color: #065F46;
}

.floating-avatar-badge img.avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #10B981;
}

@media (max-width: 991px) {
  .hub-spoke-container {
    flex-direction: column;
  }
  .hub-side-col {
    width: 100%;
  }
}

/* ==========================================================================
   Gerçek El Çizimi Fırça Darbesi (Organic Brush Stroke Highlights)
   ========================================================================== */

/* Tam Metin Arkası Marker Fırça Vurgusu (Referans Görsel 95, 96) */
.brush-hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
  padding: 1px 6px;
  font-weight: inherit;
}

.brush-hl::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 8%;
  bottom: 8%;
  height: 84%;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: rotate(-0.6deg);
}

/* Alt Çizgi Tipi İnce Fırça (Underline Brush - Referans Görsel 95 Alt Başlık) */
.brush-hl-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
  padding: 0 4px;
}

.brush-hl-underline::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 1px;
  height: 42%;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: rotate(-0.4deg);
}

.brush-hl-yellow::before {
  background-image: url('../img/doodles/brush_yellow.svg');
}

.brush-hl-mint::before {
  background-image: url('../img/doodles/brush_mint.svg');
}

.brush-hl-pink::before {
  background-image: url('../img/doodles/brush_pink.svg');
}

.brush-hl-purple::before {
  background-image: url('../img/doodles/brush_purple.svg');
}

/* ==========================================================================
   Yüksek Görünürlüklü Belirgin Zemin Şekilleri (Visible Backdrops)
   ========================================================================== */

/* 1. Belirgin Mor Dairesel Zemin Diski (Referans Görsel 92) */
.visible-backdrop-circle {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: #F4EEFE;
  border: 2px solid #E9D5FF;
  pointer-events: none;
  z-index: 1;
}

/* 2. Kavisli Asimetrik Sol Zemin Bloğu (Referans Görsel 95) */
.visible-backdrop-curved-left {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 440px;
  background: linear-gradient(135deg, #FAF5FF 0%, #FEF3C7 100%);
  border-radius: 0 220px 220px 0;
  border: 2px solid #F3E8FF;
  border-left: none;
  pointer-events: none;
  z-index: 1;
}

/* 3. Geniş Yatay Kapsül Zemin (Referans Görsel 94/97) */
.visible-backdrop-pill-box {
  background: #FAF8FF;
  border: 2px solid #EDE9FE;
  border-radius: 36px;
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 16px 48px rgba(108, 43, 217, 0.04);
}

/* 4 Anons Kaseti / Kartuş Izgarası */
.audio-cassette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.audio-cassette-card {
  background: #FFFFFF;
  border: 1.5px solid #E4E4E7;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.audio-cassette-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(108, 43, 217, 0.08);
}

.audio-cassette-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.audio-cassette-title {
  font-size: 1rem;
  font-weight: 800;
  color: #18181B;
}

.audio-cassette-body {
  font-size: 0.9rem;
  color: #52525B;
  background: #FAF7FE;
  border-radius: 12px;
  padding: 12px;
  font-style: italic;
  line-height: 1.45;
}

/* Canlı Kuyruk Sıra Çizelgesi */
.live-queue-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.live-queue-item {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #18181B;
  box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.live-queue-item.active-playing {
  border-color: #10B981;
  background: #ECFDF5;
  color: #065F46;
}

@media (max-width: 991px) {
  .visible-backdrop-curved-left {
    display: none;
  }
  .visible-backdrop-pill-box {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   Modül 4 Özel Tasarım Bileşenleri (Stok & Envanter Yönetimi)
   ========================================================================== */

/* Reçeteli Sarf Akış Şeması (Referans Görsel 92 Tarzı) */
.recipe-flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 920px;
  margin: 40px auto;
}

.recipe-card-sold {
  flex: 1;
  background: #FFFFFF;
  border: 2px solid #EFE7FD;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(108, 43, 217, 0.06);
  text-align: left;
}

.recipe-card-deducted {
  flex: 1.3;
  background: #FAF8FF;
  border: 2px solid #DDD6FE;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(108, 43, 217, 0.06);
  text-align: left;
}

.recipe-ingredient-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #FFFFFF;
  border: 1px solid #EDE9FE;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Kritik Stok Eşik Matrisi Tablosu */
.stock-matrix-wrapper {
  background: #FFFFFF;
  border: 2px solid #EDE9FE;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(108, 43, 217, 0.06);
  max-width: 920px;
  margin: 36px auto 0 auto;
}

.stock-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.stock-matrix-table th {
  background: #F8FAFC;
  padding: 14px 20px;
  font-weight: 700;
  color: #475569;
  border-bottom: 1px solid #E2E8F0;
}

.stock-matrix-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #F1F5F9;
  color: #1E293B;
}

.status-badge-critical {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #FEF2F2;
  color: #DC2626;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-badge-warning {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #FFFBEB;
  color: #D97706;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-badge-optimal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ECFDF5;
  color: #059669;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .recipe-flow-container {
    flex-direction: column;
  }
}

/* ==========================================================================
   Modül 4 Özgün Makro Tasarım Bileşenleri (Köklü Yeni Düzen)
   ========================================================================== */

/* Asimetrik Hero Ürün Kartuşu */
.hero-product-cartridge {
  background: #FFFFFF;
  border: 2px solid #EDE9FE;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(108, 43, 217, 0.08);
  position: relative;
  text-align: left;
}

/* 3 Sütunlu Stok Hareketi & Zayi Akış Panosu (Görsel 92 Tarzı) */
.stock-kanban-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  position: relative;
}

.stock-kanban-col {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  text-align: left;
  position: relative;
}

.stock-kanban-col.inbound {
  border-color: #DDD6FE;
  background: #FAF8FF;
}

.stock-kanban-col.outbound {
  border-color: #E0E7FF;
  background: #F8FAFC;
}

.stock-kanban-col.adjustment {
  border-color: #FEE2E2;
  background: #FFFBFB;
}

.stock-kanban-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 1rem;
  color: #18181B;
}

.stock-kanban-item {
  background: #FFFFFF;
  border: 1px solid #EDE9FE;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

/* 4'lü Kutusuz Serbest Metrik Bandı (Görsel 85 Tarzı) */
.freeform-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

@media (max-width: 991px) {
  .freeform-metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .freeform-metric-grid {
    grid-template-columns: 1fr;
  }
}

.freeform-metric-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.freeform-metric-icon {
  flex-shrink: 0;
}

.freeform-metric-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #18181B;
  margin-bottom: 4px;
}

.freeform-metric-desc {
  font-size: 0.88rem;
  color: #52525B;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .stock-kanban-board {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Modül 5 Özel Tasarım Bileşenleri (Müşteri & Çocuk CRM)
   ========================================================================== */

/* Veli - Çocuk İlişkisel Hiyerarşi Ağacı */
.family-tree-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 980px;
  margin: 40px auto;
}

.parent-master-card {
  flex: 1;
  background: #FFFFFF;
  border: 2px solid #EDE9FE;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(108, 43, 217, 0.06);
  text-align: left;
  position: relative;
}

.child-cards-column {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.child-profile-card {
  background: #FAF8FF;
  border: 1.5px solid #DDD6FE;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease;
}

.child-profile-card:hover {
  transform: translateX(4px);
}

.allergy-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.normal-health-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #059669;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Temiz Profesyonel CRM İkon Rozeti */
.clean-crm-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clean-crm-badge-icon.purple {
  background: #F4EEFE;
  color: #6C2BD9;
}

.clean-crm-badge-icon.rose {
  background: #FFE4E6;
  color: #E11D48;
}

.clean-crm-badge-icon.emerald {
  background: #ECFDF5;
  color: #059669;
}

.clean-crm-badge-icon.amber {
  background: #FEF3C7;
  color: #D97706;
}

@media (max-width: 991px) {
  .family-tree-container {
    flex-direction: column;
  }
}

/* ==========================================================================
   Modül 5 Özel Tasarım Bileşenleri (Müşteri & Çocuk CRM - Gradyan Odaklı)
   ========================================================================== */

/* Çerçevesiz Serbest Aile Akışı */
.family-flow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 1020px;
  margin: 40px auto;
  position: relative;
  z-index: 2;
}

.family-master-hub {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 2px solid #EDE9FE;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 48px rgba(108, 43, 217, 0.08);
  text-align: left;
}

.family-children-stream {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.child-flow-capsule {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1.5px solid #DDD6FE;
  border-radius: 20px;
  padding: 20px 24px;
  text-align: left;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.child-flow-capsule:hover {
  transform: translateY(-2px) translateX(4px);
  box-shadow: 0 16px 36px rgba(108, 43, 217, 0.1);
}

.allergy-pill-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.health-pill-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #059669;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

/* Temiz Profesyonel CRM İkon Rozeti */
.clean-crm-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clean-crm-badge-icon.purple {
  background: #F4EEFE;
  color: #6C2BD9;
}

.clean-crm-badge-icon.rose {
  background: #FFE4E6;
  color: #E11D48;
}

.clean-crm-badge-icon.emerald {
  background: #ECFDF5;
  color: #059669;
}

.clean-crm-badge-icon.amber {
  background: #FEF3C7;
  color: #D97706;
}

@media (max-width: 991px) {
  .family-flow-wrapper {
    flex-direction: column;
  }
}

/* ==========================================================================
   Modül 6 Özel Tasarım Bileşenleri (Sadakat & Ödül Yönetimi)
   ========================================================================== */

/* Canlı Milestone İlerleme Yolu */
.milestone-track-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  max-width: 1060px;
  margin: 44px auto;
  position: relative;
  z-index: 2;
}

.milestone-step-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 2px solid #EDE9FE;
  border-radius: 24px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(108, 43, 217, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.milestone-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(108, 43, 217, 0.12);
}

.milestone-step-card.unlocked {
  border-color: #A7F3D0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
}

.milestone-step-card.active-target {
  border-color: #FDE68A;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBEB 100%);
  box-shadow: 0 20px 48px rgba(217, 119, 6, 0.1);
}

.milestone-step-card.future-target {
  border-color: #DDD6FE;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF5FF 100%);
}

.milestone-pts-badge {
  font-family: monospace;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.milestone-pts-badge.green {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.milestone-pts-badge.amber {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.milestone-pts-badge.purple {
  background: #F4EEFE;
  color: #6C2BD9;
  border: 1px solid #DDD6FE;
}

/* Yönetici Jest Butonları */
.jest-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.jest-action-btn {
  background: #FFFFFF;
  border: 1.5px solid #DDD6FE;
  color: #6C2BD9;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.jest-action-btn:hover {
  background: #6C2BD9;
  color: #FFFFFF;
  border-color: #6C2BD9;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .milestone-track-container {
    flex-direction: column;
  }
}

/* ==========================================================================
   Modül 6 Radikal Tasarım Bileşenleri (Sadakat & Ödül - Bento & VIP Kart)
   ========================================================================== */

/* Aurora Mesh Gradyan Işıltısı */
.aurora-mesh-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  height: 480px;
  background: radial-gradient(circle at 20% 30%, rgba(217, 119, 6, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(108, 43, 217, 0.14) 0%, transparent 60%),
              radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

/* 16:9 Özel Video / Panel Görseli Vitrin Yuvası */
.video-panel-slot {
  background: #18181B;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 60px rgba(108, 43, 217, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-panel-slot:hover {
  transform: scale(1.01);
  box-shadow: 0 32px 72px rgba(108, 43, 217, 0.22);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(24, 24, 27, 0.4) 0%, rgba(24, 24, 27, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #FFFFFF;
  text-align: center;
  padding: 24px;
}

.video-play-button {
  width: 64px;
  height: 64px;
  background: #6C2BD9;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(108, 43, 217, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-play-button:hover {
  transform: scale(1.1);
  background: #7C3AED;
}

/* Holografik Dijital VIP Sadakat Kartı */
.holographic-vip-pass {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 40%, #064E3B 100%);
  border: 2px solid rgba(253, 230, 138, 0.4);
  border-radius: 24px;
  padding: 28px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(30, 27, 75, 0.25);
}

.holographic-vip-pass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: rotate(25deg);
  pointer-events: none;
}

.vip-card-chip {
  width: 44px;
  height: 32px;
  background: linear-gradient(135deg, #FDE68A 0%, #D97706 100%);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

/* Bento Kademeli Kartlar */
.bento-reward-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid #EDE9FE;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bento-reward-card:hover {
  transform: translateX(4px);
  border-color: #DDD6FE;
}

/* ==========================================================================
   Master B2B Satış Mimarisi Bileşenleri (Yüksek Dönüşümlü Landing Page)
   ========================================================================== */

/* 16:9 Özel Medya / Video / Mockup Yuvası */
.dedicated-media-slot {
  background: #FAFAFB;
  border: 2px solid #EDE9FE;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 0 16px 40px rgba(108, 43, 217, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dedicated-media-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(108, 43, 217, 0.14);
  border-color: #DDD6FE;
}

.media-canvas-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.media-placeholder-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.media-play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: #6C2BD9;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(108, 43, 217, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 5;
}

.media-play-trigger:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #7C3AED;
}

/* 3'lü Seviye Karşılaştırma Matrisi */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 24px;
  border: 2px solid #EDE9FE;
  box-shadow: 0 20px 48px rgba(108, 43, 217, 0.06);
  background: #FFFFFF;
  margin-top: 36px;
}

.comparison-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-matrix-table th {
  padding: 22px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  border-bottom: 2px solid #EDE9FE;
  background: #FAFAFB;
}

.comparison-matrix-table th.highlight-col-header {
  background: #F4EEFE;
  color: #6C2BD9;
  border-bottom: 2px solid #DDD6FE;
  border-left: 2px solid #DDD6FE;
  border-right: 2px solid #DDD6FE;
}

.comparison-matrix-table td {
  padding: 20px;
  border-bottom: 1px solid #F4F4F5;
  font-size: 0.92rem;
  line-height: 1.5;
  vertical-align: middle;
}

.comparison-matrix-table td.highlight-col-cell {
  background: #FAF8FF;
  font-weight: 600;
  color: #18181B;
  border-left: 2px solid #EDE9FE;
  border-right: 2px solid #EDE9FE;
}

.comparison-matrix-table tr:last-child td {
  border-bottom: none;
}

/* 4 Stratejik Çözüm Sütunu (Bento Grid) */
.bento-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.bento-solution-card {
  background: #FFFFFF;
  border: 2px solid #EDE9FE;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(108, 43, 217, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(108, 43, 217, 0.12);
  border-color: #DDD6FE;
}

.bento-bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #3F3F46;
  line-height: 1.45;
}

.bento-bullet-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Özel Kurulum (Custom Integration) Kartları */
.custom-setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.custom-setup-card {
  background: #FAF8FF;
  border: 1.5px solid #DDD6FE;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-setup-card:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  box-shadow: 0 16px 36px rgba(108, 43, 217, 0.08);
}

.custom-setup-card img {
  margin: 0 auto 16px auto;
  display: block;
}

.custom-setup-card h3 {
  text-align: center;
  width: 100%;
}

.custom-setup-card p {
  text-align: center;
  width: 100%;
}

/* Yüksek Dönüşümlü Demo Formu */
.conversion-form-box {
  background: #FFFFFF;
  border: 2px solid #EDE9FE;
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 24px 60px rgba(108, 43, 217, 0.08);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.form-group-clean {
  margin-bottom: 20px;
}

.form-label-clean {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 8px;
}

.form-input-clean {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #E4E4E7;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #FAFAFB;
}

.form-input-clean:focus {
  outline: none;
  border-color: #6C2BD9;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(108, 43, 217, 0.1);
}

.radio-pill-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.radio-pill-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FAF8FF;
  border: 1.5px solid #EDE9FE;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3F3F46;
  transition: all 0.2s ease;
}

.radio-pill-label:hover {
  background: #F4EEFE;
  border-color: #DDD6FE;
}

.radio-pill-label input[type="radio"]:checked + span {
  color: #6C2BD9;
  font-weight: 700;
}

@media (max-width: 991px) {
  .bento-solution-grid {
    grid-template-columns: 1fr;
  }
  .custom-setup-grid {
    grid-template-columns: 1fr;
  }
  .conversion-form-box {
    padding: 28px 20px;
  }
}
