/* estorix-landing-paket.css — OTOMATİK ÜRETİLDİ, elle düzenlemeyin. Kaynak: tools/landing-css-paket.php */
/* ==== estorix-landing.css ==== */
/* ===== ODOO-INSPIRED DESIGN SYSTEM ===== */
:root {
  --odoo-primary: #0A1628;
  --odoo-primary-dark: #0A1220;
  --odoo-purple: #2C3647;
  --odoo-teal: #2563EB;
  --odoo-orange: #434D5E;
  --odoo-green: #0F9D6E;

  /* Estorix marka — Indigo Pro (kurumsal/premium) wordmark paleti */
  --estorix-blue: #2563EB;
  --estorix-blue-dark: #1D4ED8;
  --estorix-ink: #0A1628;
  --estorix-cyan: #2563EB;
  --estorix-tint: #EFF4FF;
  
  --bg-white: #FFFFFF;
  --bg-light: #F7F8FA;
  --bg-gray: #F1F1F1;
  --bg-dark: #0A1628;
  
  --text-primary: #1a1d21;
  --text-secondary: #3d4752;
  --text-muted: #5c6570;
  
  --border-color: #EEF1F5;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
  
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== FLOATING TOPBAR (KardoPos-style) ===== */
@keyframes estorix-topbar-enter {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header.estorix-topbar {
  position: fixed;
  z-index: 1000;
  top: max(16px, env(safe-area-inset-top, 0px));
  left: max(12px, env(safe-area-inset-left, 0px));
  right: max(12px, env(safe-area-inset-right, 0px));
  width: auto;
  max-width: none;
  /* JS yüklenmese / Safari animasyon takılsa bile görünür kalsın */
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  overflow: visible;
  transition:
    top 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Giriş animasyonu — yalnızca JS etkinleştirdiğinde; görünürlük JS’siz de korunur */
body.estorix-topbar-animate header.estorix-topbar:not(.is-enter-done) {
  transform: translateY(-20px);
  opacity: 0;
}

body.estorix-topbar-animate header.estorix-topbar.is-entered:not(.is-enter-done) {
  pointer-events: none;
  /* Safari: transition + animation aynı özellikte çakışmayı önle */
  transition: none;
  animation: estorix-topbar-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

header.estorix-topbar.is-enter-done {
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

header.estorix-topbar.is-enter-done:not(.is-scrolled) {
  top: max(16px, env(safe-area-inset-top, 0px));
  left: max(12px, env(safe-area-inset-left, 0px));
  right: max(12px, env(safe-area-inset-right, 0px));
  width: auto;
}

header.estorix-topbar.is-enter-done.is-scrolled {
  top: 0;
  left: 0;
  right: 0;
  width: auto;
}

@media (prefers-reduced-motion: reduce) {
  header.estorix-topbar {
    transform: translateY(0);
    opacity: 1;
    transition: top 0.2s ease, left 0.2s ease, right 0.2s ease;
  }

  header.estorix-topbar.is-entered:not(.is-enter-done) {
    animation: none;
  }
}

@media (max-width: 768px) {
  header.estorix-topbar.is-enter-done:not(.is-scrolled) {
    top: max(10px, env(safe-area-inset-top, 0px));
    left: max(10px, env(safe-area-inset-left, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
  }

  header.estorix-topbar .container {
    padding: 0 14px;
  }

  .estorix-topbar__shell {
    border-radius: 18px;
  }
}

.estorix-topbar__shell {
  pointer-events: auto;
  border: 1px solid rgba(10,22,40, 0.08);
  /* Safari: blur sorunlu olabilir — opak zemin öncelikli */
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  overflow: visible;
  transition:
    background-color 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

header.estorix-topbar .container,
header.estorix-topbar .header-content,
header.estorix-topbar .header-buttons {
  overflow: visible;
}

header.estorix-topbar .header-buttons {
  position: relative;
  z-index: 5;
}

header.estorix-topbar.is-scrolled .estorix-topbar__shell {
  background: #F7F8FA;
  border-radius: 0;
  border-color: #DDE2EA;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding-top: env(safe-area-inset-top, 0px);
}

header.estorix-topbar .container {
  max-width: none;
  padding: 0 24px;
}

/* ===== APP STORE BANNER ===== */
.app-store-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #0A1628;
  color: white;
  padding: 12px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.app-store-banner.show {
  display: flex;
  transform: translateY(0);
}

.app-store-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.app-store-banner-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-store-banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.app-store-banner-text {
  flex: 1;
}

.app-store-banner-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.app-store-banner-subtitle {
  font-size: 12px;
  opacity: 0.8;
}

.app-store-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #007AFF;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  margin-right: 12px;
}

.app-store-banner-link:hover {
  background: #0056CC;
  transform: scale(1.05);
}

.app-store-banner-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  opacity: 0.7;
  flex-shrink: 0;
}

.app-store-banner-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

body.has-app-banner {
  padding-top: 64px;
}

body.has-app-banner header.estorix-topbar:not(.is-scrolled) {
  top: calc(64px + 16px);
}

body.has-app-banner header.estorix-topbar.is-scrolled {
  top: 64px;
}

@media (max-width: 768px) {
  .app-store-banner {
    padding: 10px 16px;
    flex-wrap: wrap;
  }
  
  .app-store-banner-content {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .app-store-banner-link {
    margin-right: 0;
    margin-left: auto;
  }
  
  body.has-app-banner {
    padding-top: 88px;
  }
  
  body.has-app-banner header.estorix-topbar:not(.is-scrolled) {
    top: calc(88px + 16px);
  }

  body.has-app-banner header.estorix-topbar.is-scrolled {
    top: 88px;
  }
}


.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

/* Estori + X birlikte; .brand gap yalnızca logo ↔ kelime arasında kalır */
.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.brand-text {
  color: var(--estorix-ink, #0A1628);
  font-weight: 700;
}

.brand-x {
  color: var(--estorix-blue, #2563EB);
  font-weight: 700;
  margin-left: -0.1em;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
}

/* EstoriX POS yatay logo (2026-09-16) — boyut img inline stilinde; burada mobil küçültme */
.brand .brand-logo { display: inline-flex; align-items: center; line-height: 0; flex-shrink: 0; }
.brand .brand-logo img { border-radius: 0; }
@media (max-width: 768px) { .brand .brand-logo img { height: 17px !important; } }
@media (max-width: 400px) { .brand .brand-logo img { height: 15px !important; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--odoo-primary);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--odoo-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--odoo-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--odoo-primary);
  border: 1px solid var(--odoo-primary);
}

.btn-secondary:hover {
  background: var(--bg-light);
}

/* ===== LOGIN DROPDOWN ===== */
.login-dropdown {
  position: relative;
  display: inline-block;
}

.login-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 2100;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.login-dropdown.active .login-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.login-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.login-dropdown-item:last-child {
  border-bottom: none;
}

.login-dropdown-item:hover {
  background: var(--bg-light);
  color: var(--odoo-primary);
}

.login-dropdown-item i {
  width: 20px;
  text-align: center;
  color: var(--odoo-primary);
}

/* ===== TOPBAR CALL DROPDOWN ===== */
.estorix-call-dropdown {
  position: relative;
  display: inline-flex;
}

.estorix-call-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--bg-white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.estorix-call-trigger:hover,
.estorix-call-dropdown.active .estorix-call-trigger {
  color: var(--odoo-primary);
  border-color: rgba(37,99,235, 0.35);
  background: var(--bg-light);
}

.estorix-call-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2100;
  overflow: hidden;
  padding: 6px;
}

.estorix-call-dropdown.active .estorix-call-menu {
  display: block;
}

.estorix-call-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.estorix-call-menu__item:hover {
  background: var(--bg-light);
  color: var(--odoo-primary);
}

.estorix-call-menu__item i {
  width: 18px;
  text-align: center;
  color: var(--odoo-primary);
}

.estorix-call-phone-reveal {
  padding: 0 8px 8px;
}

.estorix-call-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  background: #1D4ED8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.estorix-call-phone-link:hover {
  color: #fff;
  opacity: 0.92;
}

/* ===== CALLBACK MODAL ===== */
body.estorix-callback-open {
  overflow: hidden;
}

.estorix-callback-modal {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.estorix-callback-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.estorix-callback-modal__backdrop {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(10,22,40, 0.55);
  backdrop-filter: blur(4px);
}

.estorix-callback-modal__panel {
  position: relative;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(10,22,40, 0.18);
  padding: 24px;
}

.estorix-callback-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.estorix-callback-modal__header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.estorix-callback-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--text-secondary);
  cursor: pointer;
}

.estorix-callback-modal__close:hover {
  background: #EEF1F5;
}

.estorix-callback-modal__lead {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.estorix-callback-modal__alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 14px;
}

.estorix-callback-modal__alert--error {
  background: #FCEBEB;
  color: #A63232;
  border: 1px solid #fecaca;
}

.estorix-callback-modal__alert--success {
  background: #E7F6F0;
  color: #0B7A55;
  border: 1px solid #a7f3d0;
}

.estorix-callback-form__grid {
  display: grid;
  gap: 14px;
}

.estorix-callback-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.estorix-callback-form__field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.estorix-callback-form__field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-primary);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.estorix-callback-form__field input:focus {
  outline: none;
  border-color: var(--odoo-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235, 0.12);
}

.estorix-callback-form__submit {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
  padding: 14px 20px;
}

@media (max-width: 768px) {
  .estorix-call-dropdown {
    order: -1;
  }
}

.mobile-login-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--border-color);
}

.mobile-login-options .btn {
  width: 100%;
  justify-content: center;
}

.mobile-call-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.mobile-call-options .btn {
  width: 100%;
  justify-content: center;
}

/* Hamburger — 44px dokunma alanı, Apple tarzı ince çizgi animasyonu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(10,22,40, 0.06);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

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

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

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

/* Mobil menü: scrim + sağdan sheet (Apple benzeri) */
.mobile-nav-sheet {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav-sheet.mobile-nav-sheet--open {
  pointer-events: auto;
  visibility: visible;
}

/* Kapalı sheet: bazı .btn / link stilleri visibility:visible verebilir; üst gizleme sızmasın */
.mobile-nav-sheet:not(.mobile-nav-sheet--open) * {
  visibility: hidden !important;
}

.mobile-nav-sheet__backdrop {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(10,22,40, 0.45);
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.mobile-nav-sheet--open .mobile-nav-sheet__backdrop {
  opacity: 1;
}

.mobile-nav-sheet__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 420px);
  max-width: 100vw;
  background: #fff;
  box-shadow: -8px 0 40px rgba(10,22,40, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-nav-sheet--open .mobile-nav-sheet__panel {
  transform: translateX(0);
}

.mobile-nav-sheet__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: calc(12px + env(safe-area-inset-top, 0)) 16px 14px;
  border-bottom: 1px solid rgba(10,22,40, 0.08);
}

.mobile-nav-sheet__title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.mobile-nav-sheet__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -8px -8px -8px 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-sheet__close:hover {
  background: rgba(10,22,40, 0.06);
  color: var(--text-primary);
}

.mobile-nav-sheet__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 20px 24px;
}

.mobile-nav-sheet__nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav-sheet__nav > a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 4px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(10,22,40, 0.06);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-sheet__nav > a:hover {
  color: var(--odoo-primary);
}

.mobile-nav-sheet__cta {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* Çözümler accordion — seo-pages ile uyum; sheet içinde okunabilirlik */
.mobile-nav-sheet .mobile-menu-group {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(10,22,40, 0.06);
}

.mobile-nav-sheet .mobile-menu-group summary {
  min-height: 44px;
  padding: 10px 4px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.mobile-nav-sheet .mobile-menu-sub {
  min-height: 44px;
  padding: 12px 8px 12px 18px;
  font-size: 15px;
  font-weight: 500;
  border-top: 1px solid rgba(10,22,40, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-sheet__backdrop,
  .mobile-nav-sheet__panel,
  .mobile-menu-toggle span {
    transition: none !important;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 96px 0 100px;
  margin-top: 0;
  background: #F7F8FA;
  text-align: left;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  max-width: 560px;
}

/* Görseldeki beyaz arka plan, section gradient’iyle çakışmasın: bilinçli beyaz kart */
.hero-image {
  flex: 1;
  max-width: 520px;
  margin: 0;
  align-self: center;
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: clamp(16px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.hero-image picture {
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #ffffff;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    max-width: min(320px, 100%);
    margin: 0 auto 24px;
    width: 100%;
  }
}

.hero-title {
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-title span,
.hero-title .gradient-text {
  background: var(--odoo-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-family: 'Caveat Brush', 'Caveat', cursive;
}

.gradient-text {
  background: var(--odoo-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-family: 'Caveat Brush', 'Caveat', cursive;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37,99,235, 0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--odoo-primary);
  margin-bottom: 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== FEATURES GRID ===== */
.features-section {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.section-title {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-title .gradient-text {
  background: var(--odoo-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--odoo-primary);
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.screenshot-item {
  text-align: center;
}

.screenshot-image-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  margin-bottom: 24px;
  transition: var(--transition);
  aspect-ratio: 16/9;
  position: relative;
  cursor: pointer;
}

.screenshot-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-image-wrapper::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  z-index: 2;
}

.screenshot-image-wrapper:hover::after {
  opacity: 0.8;
}

.screenshot-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #1a1a1a;
  pointer-events: none;
}

/* ===== APPS SECTION (Estorix Club & Estorix) ===== */
.apps-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}

.app-card {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.apps-section--dual .app-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.app-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.app-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.app-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.apps-section--dual .apps-grid {
  align-items: stretch;
}

.apps-section--triple .app-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app-nlp-preview {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F8FA;
  border: 1px dashed var(--border-color);
}

.app-nlp-preview-inner {
  text-align: center;
  padding: 24px;
  color: var(--text-primary);
}

.app-nlp-preview-inner i {
  font-size: 40px;
  color: var(--odoo-teal);
  margin-bottom: 12px;
  display: block;
}

.app-nlp-url {
  display: block;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.app-nlp-sub {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
}

.app-card--flagship {
  position: relative;
  border-color: rgba(37,99,235, 0.35);
  box-shadow: 0 12px 36px rgba(37,99,235, 0.1);
}

.app-flagship-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--odoo-primary, #1D4ED8);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235, 0.35);
}

.app-feature-list {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-feature-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.app-feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11px;
  color: #1D4ED8;
}

.app-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.app-card-actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 140px;
}

@media (max-width: 520px) {
  .app-card-actions .btn {
    flex: 1 1 100%;
  }
}

/* Hızlı erişim: Estorix Club vurgulu chip */
.epm-chip-accent {
  border-color: rgba(37,99,235, 0.45);
  background: rgba(37,99,235, 0.08);
  font-weight: 600;
}

/* ===== WIDE SCREENS SECTION ===== */
.wide-screens-section {
  padding: 120px 0;
  background: #F7F8FA;
  position: relative;
}

.wide-screens-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(37,99,235, 0.2);
}

.wide-screens-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.wide-screens-section .section-title {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.wide-screens-section .section-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.wide-screens-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 24px;
}

.wide-screen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.wide-screen:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(37,99,235, 0.15);
}

.wide-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--odoo-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.wide-screen:hover::before {
  opacity: 1;
}

.wide-screen img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wide-screen:hover img {
  transform: scale(1.01);
}

.wide-screen-caption {
  padding: 32px 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wide-screen-caption h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.wide-screen-caption p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
}

@media (max-width: 1024px) {
  .wide-screens-container {
    max-width: 100%;
    gap: 48px;
  }
  
  .wide-screen-caption {
    padding: 28px 32px;
  }
  
  .wide-screen-caption h3 {
    font-size: 22px;
  }
  
  .wide-screen-caption p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .wide-screens-section {
    padding: 80px 0;
  }
  
  .wide-screens-section .section-header {
    margin-bottom: 48px;
  }
  
  .wide-screens-section .section-subtitle {
    font-size: 16px;
  }
  
  .wide-screens-container {
    gap: 40px;
    padding: 0 16px;
  }
  
  .wide-screen {
    border-radius: 16px;
  }
  
  .wide-screen-caption {
    padding: 24px 20px;
  }
  
  .wide-screen-caption h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .wide-screen-caption p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Screenshot Modal */
.screenshot-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}

.screenshot-modal.active {
  display: flex;
}

.screenshot-modal-content {
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

.screenshot-modal-image {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  display: block;
}

.screenshot-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.screenshot-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.screenshot-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.screenshot-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  font-size: 32px;
  color: white;
}

.feature-icon.primary { background: var(--odoo-primary); }
.feature-icon.teal { background: var(--odoo-teal); }
.feature-icon.orange { background: var(--odoo-orange); }
.feature-icon.green { background: var(--odoo-green); }
.feature-icon.purple { background: var(--odoo-purple); }

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.01em;
}

.feature-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 64px auto 0;
}

.pricing-compare {
  max-width: 1100px;
  margin: 40px auto 0;
  overflow-x: auto;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-compare-table thead {
  background: #FCEBEB;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 12px 16px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.pricing-compare-table tr:nth-child(even) td {
  background: #F7F8FA;
}

.pricing-check {
  color: #0F9D6E;
}

.pricing-x {
  color: #D14343;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  border-color: var(--odoo-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--popular::before {
  content: 'Önerilen Paket';
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--odoo-green);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
}

.pricing-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.pricing-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--odoo-primary);
}

.pricing-period {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 600;
}

.pricing-total {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  background: #EEF1F5;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-primary);
  border: 1px solid #e8eaed;
}

.feature-list li::before {
  content: '✓';
  color: var(--odoo-green);
  font-weight: 700;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .pricing-compare {
    display: none;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-amount {
    font-size: 36px;
  }

  .pricing-title {
    font-size: 22px;
  }
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 8px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  transition: var(--transition);
}

.pricing-feature.active {
  background: rgba(37,99,235, 0.05);
  border-color: var(--odoo-primary);
}

.pricing-feature.coming-soon {
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.02);
}

.pricing-feature.coming-soon .pricing-feature-name {
  color: var(--text-secondary);
}

.pricing-feature-info {
  flex: 1;
  min-width: 0;
  pointer-events: none;
}

.pricing-feature-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.pricing-feature-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.pricing-feature-price.free {
  color: var(--odoo-green);
}

.pricing-toggle {
  width: 48px;
  height: 24px;
  background: var(--border-color);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
  border: none;
  padding: 0;
  z-index: 2;
  pointer-events: auto;
}

.pricing-toggle.active {
  background: var(--odoo-primary);
}

.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pricing-toggle.active::after {
  transform: translateX(24px);
}

.pricing-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.pricing-cta {
  width: 100%;
  padding: 16px;
  background: var(--odoo-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-cta:hover {
  background: var(--odoo-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== REFERENCE SECTION ===== */
.reference-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.reference-item {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.reference-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--odoo-primary);
}

.reference-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--odoo-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.reference-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-quote {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--text-primary);
  position: relative;
  padding-left: 40px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 80px;
  color: var(--odoo-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--odoo-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-primary);
}

.author-info p:not(.author-name) {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.download-category-label {
  display: block;
  text-align: center;
  margin: 60px auto 32px;
  padding: 10px 24px;
  background: var(--odoo-primary);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: fit-content;
  text-transform: uppercase;
}

.download-platforms-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.download-platform-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--odoo-primary);
}

.download-platform-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.download-platform-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.download-platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--odoo-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: auto;
}

.download-platform-button:hover {
  background: var(--odoo-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.download-platform-button i {
  font-size: 16px;
}

.download-platform-button.coming-soon {
  background: var(--bg-gray);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

.download-platform-button.coming-soon:hover {
  background: var(--bg-gray);
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--odoo-primary);
  color: white;
  text-align: center;
}

.cta-section .section-title {
  color: white;
  margin-bottom: 24px;
}

.cta-section .section-title .gradient-text {
  color: #0A1628 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #0A1628 !important;
  background-clip: unset !important;
  font-weight: 800;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--odoo-primary);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #ffffff;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
}

.footer-legal-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 8px;
  line-height: 1.4;
}

.footer-legal-line {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px;
  line-height: 1.45;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payments__secure {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-payments__secure i {
  color: #34d399;
}

.footer-payments__logos {
  display: inline-flex;
  line-height: 0;
}

.footer-payments__logos img {
  height: 28px;
  width: auto;
  max-width: min(100%, 429px);
}

.footer-payments__iyzico {
  height: 28px;
  width: auto;
  max-width: 210px;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  box-sizing: content-box;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

@media (max-width: 768px) {
  .footer-payments {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-payments__logos img,
  .footer-payments__iyzico {
    height: 24px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: nowrap;
    min-width: 0;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex-shrink: 1;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .nav-links,
  .header-buttons {
    display: none;
  }
  
  .hero {
    padding: 60px 0 80px;
  }
  
  .preview-section {
    padding: 40px 0;
  }
  
  .preview-image-wrapper {
    margin: 0 16px;
    border-radius: var(--border-radius);
  }
  
  .screenshots-section {
    padding: 60px 0;
  }
  
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }
  
  .screenshot-image-wrapper {
    border-radius: var(--border-radius);
  }
  
  .screenshot-title {
    font-size: 20px;
  }
  
  .screenshot-description {
    font-size: 14px;
  }
  
  .features-section,
  .pricing-section,
  .reference-section,
  .testimonial-section,
  .cta-section,
  .download-section {
    padding: 60px 0;
  }

  .download-platforms-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .download-platform-card {
    padding: 24px;
  }

  .download-category-label {
    margin: 40px auto 24px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .reference-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 32px 24px;
  }
  
  .testimonial-quote {
    font-size: 20px;
    padding-left: 30px;
  }
  
  .testimonial-quote::before {
    font-size: 60px;
  }
}

/* ===== PREMIUM DEEP FEATURES SECTION ===== */
.deep-features {
  padding: 120px 0 100px;
  background: #F7F8FA;
  position: relative;
  overflow: visible !important;
}

.deep-features::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: none;
  border-radius: 50%;
  animation: df-float 8s ease-in-out infinite;
  pointer-events: none;
}

.deep-features::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: none;
  border-radius: 50%;
  animation: df-float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes df-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes df-fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes df-fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes df-slideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes df-slideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes df-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes df-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.15); }
  50% { box-shadow: 0 0 0 12px rgba(37,99,235,0); }
}

@keyframes df-countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes df-iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes df-borderGlow {
  0%, 100% { border-color: rgba(37,99,235,0.15); }
  50% { border-color: rgba(37,99,235,0.4); }
}

.df-hidden { opacity: 0; transform: translateY(40px); transition: none; }
.df-visible { animation: df-fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.df-visible-delay1 { animation: df-fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s forwards; opacity: 0; }
.df-visible-delay2 { animation: df-fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards; opacity: 0; }
.df-visible-delay3 { animation: df-fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s forwards; opacity: 0; }

/* Stats Bar */
.df-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.df-stat-item {
  text-align: center;
  padding: 32px 16px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}

.df-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--odoo-primary);
  transition: left 0.6s ease;
}

.df-stat-item:hover::before {
  left: 100%;
}

.df-stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(37,99,235,0.12);
  border-color: var(--odoo-primary);
}

.df-stat-number {
  font-size: 42px;
  font-weight: 900;
  background: var(--odoo-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.df-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Category Tabs - hidden (section disabled) */
.df-tabs-wrapper {
  display: none !important;
}

.df-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 8px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.df-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.df-tab:hover {
  background: rgba(37,99,235,0.06);
  color: var(--odoo-primary);
}

.df-tab.active {
  background: var(--odoo-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.df-tab i {
  font-size: 15px;
}

/* Tab Panel */
.df-panel {
  display: none;
  animation: df-fadeIn 0.5s ease forwards;
  overflow: visible !important;
}

.df-panel.active {
  display: block;
}

.df-panel-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
  overflow: visible !important;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 0;
}

.df-panel-info {
  padding-right: 24px;
}

.df-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.df-badge-purple { background: rgba(37,99,235,0.1); color: var(--odoo-primary); }
.df-badge-teal { background: rgba(37,99,235,0.1); color: var(--odoo-teal); }
.df-badge-orange { background: rgba(249,115,22,0.1); color: var(--odoo-orange); }
.df-badge-green { background: rgba(15,157,110,0.1); color: var(--odoo-green); }

.df-panel-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.df-panel-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.df-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.df-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: default;
}

.df-feature-item:hover {
  border-color: var(--odoo-primary);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.08);
}

.df-feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}

.df-check-purple { background: rgba(37,99,235,0.12); color: var(--odoo-primary); }
.df-check-teal { background: rgba(37,99,235,0.12); color: var(--odoo-teal); }
.df-check-orange { background: rgba(249,115,22,0.12); color: var(--odoo-orange); }
.df-check-green { background: rgba(15,157,110,0.12); color: var(--odoo-green); }

.df-feature-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Visual Card */
.df-panel-visual {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.df-panel-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}

.df-visual-purple::before { background: var(--odoo-primary); }
.df-visual-teal::before { background: var(--odoo-teal); }
.df-visual-orange::before { background: var(--odoo-orange); }
.df-visual-green::before { background: var(--odoo-green); }

.df-visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  margin-bottom: 24px;
  animation: df-iconBounce 3s ease-in-out infinite;
  position: relative;
}

.df-visual-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  animation: df-pulse 2.5s ease-in-out infinite;
}

.df-icon-purple { background: var(--odoo-primary); }
.df-icon-teal { background: var(--odoo-teal); }
.df-icon-orange { background: var(--odoo-orange); }
.df-icon-green { background: var(--odoo-green); }

.df-visual-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.df-visual-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 28px;
}

/* Mini Feature Pills in Visual */
.df-mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.df-mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.df-mini-pill:hover {
  background: rgba(37,99,235,0.06);
  border-color: var(--odoo-primary);
  transform: translateY(-2px);
}

.df-mini-pill i {
  font-size: 12px;
  color: var(--odoo-primary);
}

/* Bottom CTA Banner */
.df-bottom-cta {
  margin-top: 64px;
  padding: 48px;
  background: var(--odoo-primary);
  border-radius: 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.df-bottom-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.df-bottom-cta h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.df-bottom-cta p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
  position: relative;
}

.df-bottom-cta .btn {
  position: relative;
}

/* Responsive */
@media (max-width: 1024px) {
  .df-panel-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }
  .df-panel-info {
    padding-right: 0;
  }
  .df-panel-visual {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .deep-features {
    padding: 80px 0 60px;
  }
  .df-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
  }
  .df-stat-number {
    font-size: 32px;
  }
  .df-stat-label {
    font-size: 12px;
  }
  .df-stat-item {
    padding: 24px 12px;
  }
  .df-tabs {
    gap: 6px;
    padding: 6px;
    border-radius: 12px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .df-tabs::-webkit-scrollbar {
    display: none;
  }
  .df-tab {
    padding: 10px 14px;
    font-size: 13px;
  }
  .df-tab span {
    display: none;
  }
  .df-panel-title {
    font-size: 24px;
  }
  .df-panel-description {
    font-size: 15px;
  }
  .df-panel-visual {
    padding: 28px;
    min-height: 280px;
  }
  .df-bottom-cta {
    padding: 32px 24px;
    margin-top: 48px;
  }
  .df-bottom-cta h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .df-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .df-stat-number {
    font-size: 28px;
  }
  .df-feature-item {
    padding: 12px 14px;
  }
}

/* ===== YAZICI & FİŞ ANİMASYONU ===== */
.df-printer-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}

.df-printer {
  position: relative;
  width: 80mm;
  max-width: 80mm;
  height: 420px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 30%, #e8e8e8 70%, #d8d8d8 100%);
  border-radius: 12px 12px 6px 6px;
  box-shadow: 
    0 12px 48px rgba(0,0,0,0.2),
    inset 0 2px 4px rgba(255,255,255,0.9),
    inset 0 -2px 4px rgba(0,0,0,0.1),
    0 4px 8px rgba(0,0,0,0.15);
  overflow: visible;
  border: 2px solid rgba(0,0,0,0.08);
}

/* Üst panel - ekran ve düğmeler alanı */
.df-printer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #F7F8FA;
  border-radius: 12px 12px 0 0;
  border-bottom: 3px solid rgba(0,0,0,0.1);
  box-shadow: 
    inset 0 2px 4px rgba(255,255,255,0.95),
    inset 0 -1px 2px rgba(0,0,0,0.05);
}

/* Ekran alanı kaldırıldı - READY ekranı yok */

/* Fiş çıkış yeri (slot) - üstte */
.df-printer-slot {
  position: absolute;
  top: 100px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0.1) 0%, 
    rgba(0,0,0,0.25) 50%, 
    rgba(0,0,0,0.35) 100%);
  border-radius: 0 0 3px 3px;
  box-shadow: 
    inset 0 3px 6px rgba(0,0,0,0.3),
    inset 0 -1px 2px rgba(255,255,255,0.1),
    0 1px 2px rgba(0,0,0,0.2);
  border-top: 1px solid rgba(0,0,0,0.2);
}

/* LED göstergeler */
.df-printer-light {
  position: absolute;
  top: 60px;
  right: 16px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #27ae60 0%, #1e8449 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 12px rgba(39,174,96,1),
    0 0 6px rgba(39,174,96,0.6),
    inset 0 1px 3px rgba(255,255,255,0.4),
    inset 0 -1px 2px rgba(0,0,0,0.3);
  animation: df-printerPulse 2s ease-in-out infinite;
  border: 1px solid rgba(39,174,96,0.6);
}

/* Power butonu */
.df-printer-power {
  position: absolute;
  top: 60px;
  left: 16px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #95a5a6 0%, #7f8c8d 100%);
  border-radius: 50%;
  box-shadow: 
    inset 0 2px 4px rgba(0,0,0,0.4),
    inset 0 -1px 2px rgba(255,255,255,0.2),
    0 1px 2px rgba(0,0,0,0.3);
  border: 1px solid rgba(0,0,0,0.3);
}

/* Marka etiketi */
.df-printer-brand {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

/* Yan panel detayları */
.df-printer-side {
  position: absolute;
  top: 100px;
  left: 0;
  width: 6px;
  height: 320px;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0.03) 0%, 
    rgba(0,0,0,0.08) 30%,
    rgba(0,0,0,0.12) 70%,
    rgba(0,0,0,0.18) 100%);
  border-radius: 0 3px 3px 0;
  box-shadow: inset 2px 0 4px rgba(0,0,0,0.1);
}

.df-printer-side-right {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.1);
}

@keyframes df-printerPulse {
  0%, 100% { 
    opacity: 1; 
    box-shadow: 
      0 0 12px rgba(39,174,96,1),
      0 0 6px rgba(39,174,96,0.6),
      inset 0 1px 3px rgba(255,255,255,0.4),
      inset 0 -1px 2px rgba(0,0,0,0.3);
  }
  50% { 
    opacity: 0.8; 
    box-shadow: 
      0 0 16px rgba(39,174,96,1.2),
      0 0 8px rgba(39,174,96,0.8),
      inset 0 1px 3px rgba(255,255,255,0.4),
      inset 0 -1px 2px rgba(0,0,0,0.3);
  }
}

.df-receipt {
  position: absolute;
  top: 106px; /* Slot'un hemen üstü (100px slot + 6px) */
  left: 50%;
  transform: translateX(-50%);
  width: calc(80mm - 20px); /* Slot genişliğine uygun */
  max-width: calc(80mm - 20px);
  height: 0;
  background: white;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: visible !important;
  opacity: 0;
  transition: opacity 0.3s ease, height 0.1s linear;
}

.df-receipt.active {
  opacity: 1;
}

.df-receipt-content {
  padding: 16px 20px;
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.30;
  color: #000;
  font-weight: 500;
  background-color: #ffffff;
  overflow: visible !important;
}

.df-receipt-header {
  text-align: center;
  margin-bottom: 8px;
}

.df-receipt-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3px;
}

.df-receipt-address {
  font-size: 14px;
  color: #000000;
  margin: 3px 0;
}

.df-receipt-info {
  font-size: 14px;
  color: #000000;
  margin: 3px 0;
}

.df-receipt-date {
  font-size: 14px;
  color: #000000;
  margin: 3px 0;
}

.df-receipt-hr {
  border: none;
  border-top: 2px solid #000000;
  margin: 8px 0;
}

.df-receipt-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0;
}

.df-receipt-table th,
.df-receipt-table td {
  padding: 3px 0;
}

.df-receipt-table thead th {
  font-weight: 600;
  border-bottom: 2px solid #000000;
  color: #000000;
}

.df-receipt-table .qty,
.df-receipt-table .unit,
.df-receipt-table .total {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.df-receipt-table td.name {
  text-align: left;
  padding-right: 4px;
  white-space: normal;
  word-break: break-word;
  color: #000000;
}

.df-receipt-table td.qty,
.df-receipt-table td.unit,
.df-receipt-table td.total {
  color: #000000;
}

.df-receipt-table tbody tr {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.df-receipt-totals {
  margin-top: 6px;
  width: 100%;
  font-size: 14px;
}

.df-receipt-totals td {
  padding: 3px 0;
  color: #000000;
}

.df-receipt-totals td:first-child {
  text-align: left;
  font-weight: 700;
}

.df-receipt-totals td:last-child {
  text-align: right;
  font-weight: 700;
}

.df-receipt-footer {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
}

.df-receipt-signature,
.df-receipt-confirm {
  word-break: break-all;
  margin: 3px 0;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
}

.df-receipt-qr-note {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
  color: #000000;
}

.df-receipt-print-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
  opacity: 0;
  animation: df-printLine 0.3s ease forwards;
}

@keyframes df-printLine {
  0% { opacity: 0; transform: scaleX(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleX(1); }
}

.df-receipt-emerging {
  animation: df-receiptEmerge 0.5s ease-out forwards;
}

@keyframes df-receiptEmerge {
  from {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* Scroll-based receipt extension */
.df-receipt-extending {
  transition: height 0.1s linear;
}

/* Yazıcı için özel görsel stil */
#panel-yazici .df-panel-visual {
  background: #F7F8FA;
  min-height: 500px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  overflow: visible !important;
}

#panel-yazici .df-visual-icon,
#panel-yazici .df-visual-title,
#panel-yazici .df-visual-desc,
#panel-yazici .df-mini-features {
  display: none;
}

@media (max-width: 1024px) {
  .df-printer {
    width: 80mm;
    max-width: 80mm;
    height: 340px;
  }
  .df-receipt {
    width: 80mm;
    max-width: 80mm;
  }
  .df-receipt-content {
    padding: 16px 18px;
    font-size: 13px;
  }
  .df-receipt-title {
    font-size: 20px;
  }
  .df-receipt-table {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  #panel-yazici .df-panel-visual {
    min-height: 400px;
    padding: 30px 20px;
  }
  .df-printer {
    width: 80mm;
    max-width: 80mm;
    height: 320px;
  }
  .df-receipt {
    width: 80mm;
    max-width: 80mm;
  }
  .df-receipt-content {
    padding: 14px 16px;
    font-size: 12px;
  }
  .df-receipt-title {
    font-size: 18px;
  }
  .df-receipt-table {
    font-size: 12px;
  }
  .df-receipt-totals {
    font-size: 12px;
  }
}

/* ==== seo-pages.css ==== */
/* =========================================================
   Estorix SEO Pages — Yardımcı Stiller
   estorix-landing.css token'larını kullanır
   (Odoo Light Theme: --odoo-primary, --odoo-purple, --odoo-teal,
    --bg-white/light, --text-primary/secondary/muted, --border-color, --shadow*)
   ========================================================= */

/* ---- Breadcrumb ---- */
.seo-breadcrumb {
    padding: 14px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.seo-breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.seo-breadcrumb-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.seo-breadcrumb-list a:hover { color: var(--odoo-primary); }
.seo-breadcrumb-current {
    color: var(--text-primary);
    font-weight: 600;
}
.seo-breadcrumb-sep {
    color: var(--text-muted);
    font-size: 10px;
    line-height: 1;
}

/* ---- Page Hero (alt sayfalar) ---- */
.seo-page-hero {
    position: relative;
    padding: 110px 0 70px;
    text-align: center;
    background: var(--bg-light);
    overflow: hidden;
}
.seo-page-hero::before,
.seo-page-hero::after {
    content: "";
    position: absolute;
    inset: -30% -10%;
    pointer-events: none;
    z-index: 0;
}
.seo-page-hero::before {
    background:
        none;
}
.seo-page-hero::after {
    background:
        none;
}
.seo-page-hero > .container { position: relative; z-index: 1; }
.seo-page-hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.15;
    margin: 0 auto 18px;
    max-width: 880px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.seo-page-hero p.seo-lead {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto 28px;
}
.seo-page-hero .seo-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 24px;
}

/* ==========================================================================
   HERO — iki kolonlu profesyonel düzen (metin + gerçek ürün ekranı)
   .seo-page-hero--split verilmeyen sayfalar eski ortalı düzende kalır.
   ========================================================================== */
.seo-page-hero--split { text-align: left; padding: 84px 0 64px; }
.seo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}
.seo-page-hero--split h1 {
    margin: 0 0 16px;
    max-width: 100%;
    font-size: clamp(30px, 3.9vw, 46px);
}
.seo-page-hero--split p.seo-lead { margin: 0 0 22px; max-width: 100%; }
.seo-page-hero--split .seo-hero-cta { justify-content: flex-start; margin-top: 26px; }

.seo-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.seo-hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.seo-hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-secondary);
}
.seo-hero-points li i {
    flex: none;
    margin-top: 3px;
    font-size: 12px;
    color: var(--odoo-green, #0F9D6E);
}
.seo-hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 0;
    font-size: 13px;
    color: var(--text-muted, #7a8698);
}

/* Ürün ekranı çerçevesi — sahte tarayıcı/uygulama penceresi */
.seo-shot-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0A1628;
    border: 1px solid rgba(10,22,40, 0.12);
    box-shadow: 0 18px 44px rgba(10,22,40, 0.14);
}
.seo-shot-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    background: #101a2e;
}
.seo-shot-bar i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}
.seo-shot-frame img {
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
}
.seo-hero-shot { margin: 0; }
.seo-hero-shot figcaption,
figure.seo-content-visual--shot figcaption {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted, #7a8698);
    text-align: center;
}
/* Ekran görselli içerik bloğu — ikon kutusu kuralları geçersiz kılınır.
   Element+sınıf seçici: .seo-content-visual kuralları dosyada DAHA SONRA geldiği
   için tek sınıfla yazılırsa kaybeder. */
figure.seo-content-visual--shot {
    aspect-ratio: auto;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0;
    overflow: visible;
}
figure.seo-content-visual--shot::before,
figure.seo-content-visual--shot::after { display: none; content: none; }

@media (max-width: 1024px) {
    .seo-hero-grid { grid-template-columns: 1fr; gap: 34px; }
    .seo-page-hero--split { text-align: center; }
    .seo-page-hero--split .seo-hero-cta { justify-content: center; }
    .seo-hero-points { max-width: 460px; margin: 0 auto; text-align: left; }
    .seo-hero-note { justify-content: center; }
}

/* ---- Body Sections ---- */
.seo-section {
    padding: 90px 0;
    background: var(--bg-white);
}
.seo-section-alt {
    padding: 90px 0;
    background: var(--bg-light);
}
.seo-section .section-title,
.seo-section-alt .section-title { text-align: center; }
.seo-section .section-subtitle,
.seo-section-alt .section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 12px auto 0;
}

.seo-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}
.seo-content-block.reverse > :first-child { order: 2; }
@media (max-width: 1024px) {
    .seo-content-block { grid-template-columns: 1fr; gap: 36px; }
    .seo-content-block.reverse > :first-child { order: 0; }
    .seo-content-block > * { min-width: 0; }
}
.seo-content-block h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    margin: 0 0 16px;
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.01em;
}
.seo-content-block h3 {
    font-size: 18px;
    margin: 24px 0 8px;
    color: var(--text-primary);
    font-weight: 700;
}
.seo-content-block p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0 0 12px;
}
.seo-content-block ul {
    padding-left: 0;
    margin: 14px 0;
    list-style: none;
}
.seo-content-block ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 15px;
}
.seo-content-block ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--odoo-green);
    font-size: 13px;
}

/* Visual card — landing'in df-panel-visual desenini taklit eder */
.seo-content-visual {
    aspect-ratio: 4 / 3;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.seo-content-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: var(--odoo-primary);
}
.seo-content-visual i {
    font-size: clamp(72px, 11vw, 140px);
    background: var(--odoo-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.92;
    line-height: 1;
}

/* ---- FAQ Accordion ---- */
.seo-faq-section {
    padding: 90px 0;
    background: var(--bg-light);
}
.seo-faq-list {
    max-width: 880px;
    margin: 36px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.seo-faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.seo-faq-item[open] {
    border-color: var(--odoo-primary);
    box-shadow: 0 8px 24px rgba(37,99,235, 0.08);
}
.seo-faq-question {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}
.seo-faq-question::-webkit-details-marker { display: none; }
.seo-faq-q-text { line-height: 1.45; }
.seo-faq-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.seo-faq-item[open] .seo-faq-icon {
    background: var(--odoo-primary);
    color: #fff;
    transform: rotate(135deg);
}
.seo-faq-answer {
    padding: 0 22px 22px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}
.seo-faq-answer p { margin: 0; }

/* ---- Çözümler (Solutions) Mega Grid ---- */
.seo-solutions-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}
.seo-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 22px;
    margin-top: 44px;
}
.seo-solution-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    min-width: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.seo-solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--odoo-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.seo-solution-card:hover {
    transform: translateY(-4px);
    border-color: var(--odoo-primary);
    box-shadow: var(--shadow-lg);
}
.seo-solution-card:hover::before { transform: scaleX(1); }
.seo-solution-card .seo-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--odoo-primary);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(37,99,235, 0.18);
}
/* Marka logosu taşıyan kart başlığı: ikon kutusu yerine beyaz logo alanı.
   (Gradient 52x52 kutu logoyu eziyordu.) */
.seo-solution-card .seo-card-icon--logo {
    width: auto;
    min-width: 108px;
    max-width: 190px;
    height: 56px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: none;
}
.seo-solution-card .seo-card-icon--logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
/* Cihaz fotoğrafı — beyaz ürün çerçevesi (görseller beyaz zeminli) */
.seo-device-shot {
    display: grid;
    place-items: center;
    height: 150px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}
.seo-device-shot img {
    height: 130px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
/* Yol haritası kartı — canlı olmadığı belli olsun */
.seo-solution-card--soon {
    background: var(--bg-light, #F7F8FA);
}
.seo-solution-card--soon::before {
    background: #8A93A3;
}
.seo-soon-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    margin-top: auto;
    padding: 5px 13px;
    border-radius: 999px;
    background: rgba(91,102,120, 0.14);
    color: #434D5E;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.5;
}
.seo-soon-pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.seo-soon-pill--wip {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}
.seo-soon-pill--live {
    background: rgba(15,157,110, 0.12);
    color: #0B7A55;
}
/* Geniş bölüm alt başlığı. ÖNEMLİ: bu iş satır içi style ile yapılmamalı —
   estorix-vibe.css'te `.section-header > p[style]` seçicisi, style attribute'u
   olan her paragrafı BÜYÜK HARFLİ "kicker" tipografisine çeviriyor. */
.seo-subtitle-wide {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.seo-solution-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}
.seo-solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}
.seo-solution-card .seo-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--odoo-primary);
    margin-top: auto;
}
.seo-solution-card .seo-card-link i { transition: transform 0.25s ease; }
.seo-solution-card:hover .seo-card-link i { transform: translateX(3px); }

@media (max-width: 640px) {
    .seo-solutions-section {
        padding: 56px 0 64px;
    }
    .seo-solutions-grid {
        margin-top: 28px;
    }
    .seo-stats-strip {
        grid-template-columns: 1fr;
    }
    .seo-solution-card {
        padding: 18px 16px;
        gap: 12px;
    }
    .seo-solution-card h3 {
        font-size: 16px;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .seo-solution-card p {
        font-size: 13px;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }
    .seo-solution-card .seo-card-icon {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }
    .seo-solution-card .seo-card-link {
        font-size: 13px;
    }
}

/* ---- Entegrasyonlar Logo Strip ---- */
.seo-integrations-section {
    padding: 90px 0;
    background: var(--bg-light);
}
.seo-integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 32px;
}
.seo-integration-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    min-height: 64px;
    box-shadow: var(--shadow-sm);
}
.seo-integration-tile i {
    font-size: 18px;
    color: var(--odoo-teal);
    transition: transform 0.25s ease;
}
.seo-integration-tile:hover {
    transform: translateY(-3px);
    border-color: var(--odoo-teal);
    box-shadow: var(--shadow);
    color: var(--odoo-teal);
}
.seo-integration-tile:hover i { transform: scale(1.12); }

/* ---- Yazarkasa (ÖKC) marka satırı — entegrasyon bandının altı ---- */
.seo-okc-band {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px dashed var(--border-color);
}
.seo-okc-band__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.seo-okc-band__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.seo-okc-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 168px;
    padding: 16px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: var(--transition);
}
.seo-okc-brand__device {
    height: 76px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}
.seo-okc-brand__logo {
    height: 26px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}
.seo-okc-brand__model {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}
.seo-okc-brand__status {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-secondary);
}
.seo-okc-brand:hover {
    transform: translateY(-3px);
    border-color: var(--odoo-teal);
    box-shadow: var(--shadow);
}

/* ---- Ekosistem & pazar anlatımı (ana sayfa) ---- */
.seo-ecosystem-section {
    padding: 88px 0;
    background: #F7F8FA;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.seo-ecosystem-section .section-header {
    text-align: center;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.seo-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.seo-eco-card {
    padding: 28px 26px 26px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.seo-eco-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37,99,235, 0.08);
    border-color: rgba(37,99,235, 0.25);
}
.seo-eco-card--sosyalx {
    border-top: 3px solid var(--odoo-primary);
}
.seo-eco-card--pos {
    border-top: 3px solid #1D4ED8;
}
.seo-eco-kicker {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--odoo-primary);
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.seo-eco-card--pos .seo-eco-kicker {
    color: #2563EB;
}
.seo-eco-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--text-primary);
    line-height: 1.3;
}
.seo-eco-lead {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 16px;
}
.seo-eco-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.seo-eco-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    line-height: 1.55;
}
.seo-eco-list li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 10px;
    color: var(--odoo-primary);
}
.seo-eco-card--pos .seo-eco-list li::before {
    color: #1D4ED8;
}
.seo-eco-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--odoo-primary);
    text-decoration: none;
    margin-top: auto;
}
.seo-eco-cta:hover {
    gap: 12px;
}
.seo-eco-card--pos .seo-eco-cta {
    color: #2563EB;
}

/* ---- Sektörel Çözümler (Use Cases) ---- */
.seo-usecase-section {
    padding: 100px 0;
    background: var(--bg-white);
}
.seo-usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 44px;
}
.seo-usecase-card {
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.seo-usecase-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--odoo-primary);
    transition: left 0.6s ease;
}
.seo-usecase-card:hover::before { left: 100%; }
.seo-usecase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(37,99,235, 0.12);
    border-color: var(--odoo-primary);
}
.seo-usecase-card .seo-uc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--odoo-primary);
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(37,99,235, 0.22);
}
.seo-usecase-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--text-primary);
}
.seo-usecase-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.seo-usecase-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
    line-height: 1.55;
}
.seo-usecase-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--odoo-green);
    font-size: 12px;
}
.seo-usecase-card .seo-uc-link {
    color: var(--odoo-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.seo-usecase-card .seo-uc-link:hover { gap: 10px; }

/* ---- Related Pages ---- */
.seo-related-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.seo-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 32px;
}
.seo-related-card {
    padding: 26px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.seo-related-card:hover {
    transform: translateY(-4px);
    border-color: var(--odoo-teal);
    box-shadow: var(--shadow-lg);
}
.seo-related-card i {
    font-size: 26px;
    color: var(--odoo-teal);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,99,235, 0.10);
}
.seo-related-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}
.seo-related-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

/* ---- Mid CTA — landing .cta-section paritesi ---- */
.cta-mid {
    padding: 70px 0;
    background: var(--odoo-primary);
    color: #fff;
    text-align: center;
}
.cta-mid .section-title {
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 0 0 12px;
    color: #fff;
    font-weight: 800;
}
.cta-mid .section-title .gradient-text {
    background: none;
    -webkit-text-fill-color: #FED7AA;
    color: #FED7AA;
}
.cta-mid .section-subtitle {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
    font-size: 16px;
}
.cta-mid .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ---- Stats Strip ---- */
.seo-stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
    padding: 32px 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}
/* Split hero'da şerit tam genişlikte ve sütunlar çizgiyle ayrılır */
.seo-page-hero--split .seo-stats-strip {
    max-width: none;
    margin-top: 52px;
    gap: 0;
    padding: 26px 12px;
}
.seo-page-hero--split .seo-stat-item + .seo-stat-item {
    border-left: 1px solid var(--border-color);
}
@media (max-width: 640px) {
    .seo-page-hero--split .seo-stat-item + .seo-stat-item {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-top: 16px;
        margin-top: 16px;
    }
}
.seo-stat-item { text-align: center; }
.seo-stat-num {
    font-size: 32px;
    font-weight: 800;
    background: var(--odoo-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.seo-stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

/* ---- Mobile Menu Sub Group (hamburger) ---- */
.mobile-menu-group {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}
.mobile-menu-group summary {
    cursor: pointer;
    padding: 14px 0;
    list-style: none;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}
.mobile-menu-group summary::-webkit-details-marker { display: none; }
.mobile-menu-group summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}
.mobile-menu-group[open] summary::after {
    transform: rotate(180deg);
    color: var(--odoo-primary);
}
.mobile-menu-group .mobile-menu-sub {
    padding: 10px 0 10px 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    text-decoration: none;
}
.mobile-menu-group .mobile-menu-sub i {
    margin-right: 10px;
    color: var(--odoo-teal);
    width: 18px;
}
.mobile-menu-group .mobile-menu-sub:hover {
    color: var(--odoo-primary);
}

/* ---- Nav Dropdown (Çözümler mega menü) — light Odoo theme ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
    padding: 0;
    display: inline-flex;
    align-items: center;
}
.nav-dropdown-trigger:focus-visible {
    outline: 2px solid var(--odoo-primary);
    outline-offset: 4px;
    border-radius: 4px;
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 380px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2100;
}
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg-white);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}
.nav-dropdown-item i {
    color: var(--odoo-teal);
    width: 18px;
    text-align: center;
    font-size: 14px;
    transition: color 0.18s ease;
}
.nav-dropdown-item:hover,
.nav-dropdown-item.is-active {
    background: var(--bg-light);
    color: var(--odoo-primary);
}
.nav-dropdown-item:hover i,
.nav-dropdown-item.is-active i { color: var(--odoo-primary); }

@media (max-width: 1024px) {
    .nav-dropdown-menu { display: none; }
}

/* ---- Footer (SEO Çoklu Sütun) ---- */
.footer-content-seo { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important; }

/* ---- Active nav link underline (Odoo gradient) ---- */
.epm-nav-link.is-active {
    color: var(--odoo-primary);
    position: relative;
    font-weight: 600;
}
.epm-nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--odoo-primary);
    border-radius: 2px;
}

/* ---- Section header tweaks for SEO context ---- */
.seo-section .section-header,
.seo-section-alt .section-header,
.seo-solutions-section .section-header,
.seo-integrations-section .section-header,
.seo-usecase-section .section-header,
.seo-faq-section .section-header,
.seo-related-section .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 8px;
}

/* ---- Ana sayfa: Estorix NLP flagship ---- */
.seo-nlp-flagship {
    padding: 72px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.seo-nlp-flagship-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
@media (min-width: 960px) {
    .seo-nlp-flagship-inner {
        grid-template-columns: 1.25fr 0.75fr;
        gap: 40px;
    }
}
.seo-nlp-kicker {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--odoo-teal);
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.seo-nlp-highlights {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.seo-nlp-highlights li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.55;
}
.seo-nlp-highlights li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 11px;
    color: var(--odoo-green);
}
.seo-nlp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.seo-nlp-flagship-aside {
    position: sticky;
    top: 100px;
}
.seo-nlp-tech-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 22px;
}
.seo-nlp-tech-title {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 14px;
    color: var(--text-primary);
}
.seo-nlp-tech-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.seo-nlp-tech-list code {
    font-size: 12px;
    background: rgba(10,22,40, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
}
.seo-nlp-tech-note {
    margin: 16px 0 0;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}
.seo-eco-card--nlp {
    border-top: 3px solid var(--odoo-teal);
}
.seo-eco-card--nlp .seo-eco-kicker {
    color: var(--odoo-teal);
}
.seo-eco-card--nlp .seo-eco-list li::before {
    color: var(--odoo-teal);
}

/* —— Ana sayfa #platform: 3 kart — flex ile tutarlı kutu + NLP vurgusu —— */
#platform {
    overflow: visible;
}
#platform .section-header {
    max-width: 800px;
}
/* Grid yerine flex: bazı tema / yükseklik kombinasyonlarında kutuların “çözülmesini” önler */
#platform .seo-ecosystem-grid--platform {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: clamp(18px, 2.5vw, 26px);
    margin-top: 40px;
    width: 100%;
}
#platform .seo-ecosystem-grid--platform > .seo-eco-card {
    position: relative;
    flex: 1 1 280px;
    max-width: 380px;
    min-width: 260px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* Kart gövdesi — her zaman beyaz yüzey */
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 26px 24px 24px;
    overflow: hidden;
}

#platform .seo-eco-card--pos {
    border-top: 3px solid #1D4ED8;
}
#platform .seo-eco-card--nlp {
    border-top: 3px solid #2563EB;
}

#platform .seo-eco-card--featured.seo-eco-card--nlp {
    background: #EFF4FF;
    border: 1px solid rgba(37,99,235, 0.38);
    border-top: 3px solid #2563EB;
    box-shadow:
        0 1px 2px rgba(10,22,40, 0.06),
        0 14px 36px rgba(37,99,235, 0.14);
    z-index: 1;
}
#platform .seo-eco-card--featured .seo-eco-kicker,
#platform .seo-eco-card--featured .seo-eco-list li::before {
    color: #2563EB;
}

.seo-eco-ribbon {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #2563EB;
    padding: 5px 12px;
    border-radius: 999px;
    margin: 0 0 12px;
    box-shadow: 0 2px 8px rgba(37,99,235, 0.35);
    flex-shrink: 0;
}
#platform .seo-eco-card--erp {
    border-top: 3px solid #96621A;
}
#platform .seo-eco-card--erp .seo-eco-kicker {
    color: #92400e;
}
#platform .seo-eco-card--erp .seo-eco-list li::before {
    color: #B7791F;
}
#platform .seo-eco-card--erp .seo-eco-cta {
    color: #92400e;
}

@media (max-width: 900px) {
    #platform .seo-ecosystem-grid--platform > .seo-eco-card {
        max-width: 520px;
        width: 100%;
        min-width: 0;
        flex: 1 1 100%;
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    #platform .seo-ecosystem-grid--platform > .seo-eco-card {
        flex: 1 1 calc(33.333% - 18px);
        max-width: none;
        min-width: 200px;
        padding: 22px 18px 22px;
    }
}

/* ============================================================
   PLATFORM CARDS — Icon wrap (epc = estorix-platform-card)
   ============================================================ */
.epc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.epc-icon-wrap--pos  { background: rgba(37,99,235, 0.10); color: #1D4ED8; }
.epc-icon-wrap--nlp  { background: rgba(37,99,235, 0.12); color: #2563EB; }
.epc-icon-wrap--erp  { background: rgba(180, 83,  9, 0.10); color: #96621A; }
/* ============================================================ */

/* ── Grid ── */
.estorix-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
    align-items: stretch;
}
/* Çekirdek merdiven 3 paketten 5'e çıktı (Menü · Esnaf · İşletme ·
   Profesyonel · Kurumsal); taban grid zaten 5 sütun olduğu için ayrı bir
   override gerekmiyor, kural okunabilirlik adına açık bırakıldı. */
.estorix-pricing-grid--core {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* ── Aylık / Yıllık faturalama toggle (Adisyo tarzı) ── */
.estorix-pricing-billing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 8px auto 28px;
    padding: 5px;
    background: #EEF1F5;
    border: 1px solid #DDE2EA;
    border-radius: 12px;
    width: fit-content;
    max-width: 100%;
}
.estorix-pricing-billing__btn {
    appearance: none;
    border: none;
    background: transparent;
    color: #5B6678;
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.3;
    padding: 10px 18px;
    border-radius: 9px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.estorix-pricing-billing__btn:hover {
    color: #0A1628;
}
.estorix-pricing-billing__btn.is-active {
    background: #fff;
    color: #0A1628;
    box-shadow: 0 1px 3px rgba(10,22,40, 0.08);
}
.estorix-pricing-billing__badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #065f46;
    background: #E7F6F0;
    border: 1px solid #a7f3d0;
    border-radius: 999px;
    padding: 2px 8px;
    line-height: 1.4;
}
.estorix-pricing-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    margin-top: 6px;
    font-size: 11.5px;
    color: #8A93A3;
    line-height: 1.4;
}
.estorix-pricing-card__strike {
    text-decoration: line-through;
    text-decoration-color: #2563EB;
    color: #8A93A3;
}
.estorix-pricing-card__meta-note {
    color: #8A93A3;
}
.estorix-pricing-card__save {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 11.5px;
    font-weight: 700;
    color: #065f46;
    background: #E7F6F0;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    line-height: 1.3;
}
.estorix-pricing-grid[data-donem="aylik"] .estorix-pricing-card__save,
.estorix-pricing-grid[data-donem="aylik"] .estorix-pricing-card__strike {
    display: none;
}
@media (max-width: 480px) {
    .estorix-pricing-billing {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .estorix-pricing-billing__btn {
        width: 100%;
        justify-content: center;
        padding: 11px 14px;
    }
}

/* ── Kapsamlı: tek paket, iki kota seçeneği ── */
.estorix-pricing-enterprise {
    margin-top: 40px;
    padding: 28px 24px 24px;
    background: #F7F8FA;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}
.estorix-pricing-enterprise__kicker {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2563EB;
    margin: 0 0 8px;
}
.estorix-pricing-enterprise__title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.estorix-pricing-enterprise__lead {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    max-width: 720px;
}
.estorix-pricing-enterprise__shared {
    list-style: none;
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 20px;
}
.estorix-pricing-enterprise__shared li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.45;
}
.estorix-pricing-enterprise__shared li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
    color: #2563EB;
}
.estorix-pricing-enterprise__variants {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.estorix-pricing-variant {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #DDE2EA;
    border-radius: 12px;
    padding: 0;
    min-width: 0;
}
.estorix-pricing-variant--standard {
    border-top: 4px solid #2563EB;
}
.estorix-pricing-variant--ultra {
    border-top: 4px solid #B7791F;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.12);
}
.estorix-pricing-variant__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #92400e;
    background: #FBF3E6;
    border: 1px solid #fde68a;
    border-radius: 6px;
    padding: 4px 8px;
    line-height: 1.2;
}
.estorix-pricing-variant__head {
    padding: 20px 18px 12px;
    border-bottom: 1px solid #EEF1F5;
}
.estorix-pricing-variant__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}
.estorix-pricing-variant__hint {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 14px;
    line-height: 1.4;
}
.estorix-pricing-variant__diff {
    list-style: none;
    margin: 0;
    padding: 14px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.estorix-pricing-variant__diff li {
    font-size: 13px;
    color: #434D5E;
    padding-left: 18px;
    position: relative;
    line-height: 1.45;
}
.estorix-pricing-variant__diff li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 9px;
    color: #8A93A3;
}
.estorix-pricing-variant--ultra .estorix-pricing-variant__diff li::before {
    color: #B7791F;
}
.estorix-pricing-footnote {
    text-align: center;
    margin-top: 18px;
    color: var(--text-secondary, #5B6678);
    font-size: 14px;
    line-height: 1.65;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Base card ── */
.estorix-pricing-card {
    background: #fff;
    border: 1px solid #DDE2EA;
    border-top: 4px solid #C3CAD6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(10,22,40,0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: visible;
}
.estorix-pricing-card:hover {
    box-shadow: 0 6px 24px rgba(10,22,40,0.10);
    transform: translateY(-3px);
}

/* ── Card header ── */
.estorix-pricing-card__head {
    padding: 20px 18px 16px;
    background: #fff;
    border-bottom: 1px solid #DDE2EA;
    border-radius: 8px 8px 0 0;
}
.estorix-pricing-card__name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #8A93A3;
    margin-bottom: 12px;
}
.estorix-pricing-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 5px;
}
.estorix-pricing-card__amount {
    font-size: 34px;
    font-weight: 800;
    color: #0A1628;
    line-height: 1;
    letter-spacing: -0.02em;
}
.estorix-pricing-card__period {
    font-size: 12px;
    color: #8A93A3;
    font-weight: 500;
    line-height: 1.3;
}
.estorix-pricing-card__annual {
    font-size: 11.5px;
    color: #8A93A3;
    margin-top: 4px;
    line-height: 1.4;
}
.estorix-pricing-card__annual-note {
    display: inline;
    margin-left: 4px;
    font-size: 10.5px;
    font-weight: 600;
}

/* ── Feature list ── */
.estorix-pricing-card__features {
    list-style: none;
    padding: 16px 18px;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.estorix-pricing-card__features li {
    font-size: 12.5px;
    color: #434D5E;
    padding-left: 20px;
    position: relative;
    line-height: 1.45;
}
.estorix-pricing-card__features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 9.5px;
    color: #2563EB;
}
.estorix-pricing-card__features li.is-excluded {
    color: #8A93A3;
    text-decoration: line-through;
    text-decoration-color: #C3CAD6;
}
.estorix-pricing-card__features li.is-excluded::before {
    content: "\f00d";
    color: #C3CAD6;
}

/* ── CTA ── */
.estorix-pricing-card__cta {
    padding: 0 18px 18px;
    margin-top: auto;
}
.btn-block {
    display: flex !important;
    width: 100%;
    justify-content: center;
}

/* ── Paket adı + küçük etiket (İleri / Ultra — sade) ── */
.estorix-pricing-card__name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 12px;
    margin-bottom: 12px;
}
.estorix-pricing-card__name-row .estorix-pricing-card__name {
    margin-bottom: 0;
}
.estorix-pricing-card__tag {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5B6678;
    padding: 4px 9px;
    border: 1px solid #DDE2EA;
    border-radius: 6px;
    background: #F7F8FA;
    line-height: 1.2;
}
.estorix-pricing-card__tag--ultra {
    color: #92400e;
    border-color: #fde68a;
    background: #FBF3E6;
}

/* ── Tier: Başlangıç (slate) ── */
.estorix-pricing-card--starter {
    border-top-color: #8A93A3;
}

/* ── Tier: Orta (teal) ── */
.estorix-pricing-card--mid {
    border-top-color: #2563EB;
}
.estorix-pricing-card--mid .estorix-pricing-card__features li::before {
    color: #2563EB;
}
.estorix-pricing-card--mid .estorix-pricing-card__amount {
    color: #0f4c44;
}

/* ── Tier: Popular / İleri Seviye (ink) — diğer kartlarla aynı sakin çizgi ── */
.estorix-pricing-card--popular {
    border: 1px solid #DDE2EA;
    border-top: 4px solid #0A1628;
    box-shadow: 0 1px 4px rgba(10,22,40,0.05);
}
.estorix-pricing-card--popular .estorix-pricing-card__head {
    background: #fff;
    border-bottom-color: #DDE2EA;
}
.estorix-pricing-card--popular .estorix-pricing-card__name {
    color: #8A93A3;
}
.estorix-pricing-card--popular .estorix-pricing-card__amount {
    color: #0A1628;
}
.estorix-pricing-card--popular .estorix-pricing-card__features li::before {
    color: #2563EB;
}

/* ── Tier: Enterprise / Kapsamlı (indigo) ── */
.estorix-pricing-card--enterprise {
    border-top-color: #2563EB;
}
.estorix-pricing-card--enterprise .estorix-pricing-card__amount {
    color: #172554;
}
.estorix-pricing-card--enterprise .estorix-pricing-card__features li::before {
    color: #2563EB;
}

/* ── Tier: Ultra Plus — sade üst çizgi + etiket ── */
.estorix-pricing-card--ultra {
    border: 1px solid #DDE2EA;
    border-top: 4px solid #B7791F;
    box-shadow: 0 1px 4px rgba(10,22,40,0.05);
}
.estorix-pricing-card--ultra:hover {
    box-shadow: 0 6px 24px rgba(10,22,40,0.10);
}
.estorix-pricing-card--ultra .estorix-pricing-card__amount {
    color: #0A1628;
}
.estorix-pricing-card--ultra .estorix-pricing-card__features li::before {
    color: #2563EB;
}
.estorix-pricing-card--ultra .estorix-pricing-card__annual-note {
    color: #5B6678;
}

/* ── Responsive ── */
@media (max-width: 1180px) {
    .estorix-pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
    .estorix-pricing-grid--core {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 1024px) {
    .estorix-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .estorix-pricing-grid--core {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .estorix-pricing-enterprise__variants {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .estorix-pricing-grid,
    .estorix-pricing-grid--core {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .estorix-pricing-enterprise {
        padding: 22px 16px 18px;
        margin-top: 28px;
    }
    .estorix-pricing-enterprise__shared {
        grid-template-columns: 1fr;
    }
    .estorix-pricing-enterprise__variants {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .estorix-pricing-card__amount {
        font-size: 30px;
    }
}

/* ============================================================
   Topbar “Çözümler” alt sayfaları — genel mobil düzen
   (hero, bölümler, grid’ler, FAQ, footer, medya) — nav ile hizalı 768px
   ============================================================ */
@media (max-width: 768px) {
    .container {
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
    }

    .header-content {
        gap: 8px;
    }
    .brand {
        font-size: 20px;
        min-width: 0;
    }
    .brand-wordmark {
        max-width: 100%;
    }
    .header-buttons .btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .footer-content-seo {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .seo-breadcrumb {
        padding: 10px 0;
        font-size: 13px;
    }

    .seo-page-hero {
        padding: 84px 0 44px;
    }
    .seo-page-hero h1 {
        font-size: clamp(26px, 7.5vw, 40px);
    }
    .seo-page-hero .seo-hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .seo-page-hero .seo-hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .seo-section,
    .seo-section-alt {
        padding: 48px 0;
    }
    .seo-integrations-section,
    .seo-usecase-section,
    .seo-faq-section,
    .seo-related-section,
    .seo-ecosystem-section,
    .seo-nlp-flagship {
        padding: 48px 0;
    }

    .seo-section .section-title,
    .seo-section-alt .section-title,
    .seo-solutions-section .section-title,
    .seo-integrations-section .section-title,
    .seo-usecase-section .section-title,
    .seo-faq-section .section-title,
    .seo-related-section .section-title,
    .seo-ecosystem-section .section-title {
        font-size: clamp(22px, 5.5vw, 30px);
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .section-subtitle {
        font-size: 15px;
    }

    .seo-content-block {
        gap: 28px;
    }
    .seo-content-visual {
        min-width: 0;
        max-width: 100%;
    }

    .seo-faq-question {
        padding: 16px 14px;
        font-size: 15px;
        align-items: flex-start;
    }
    .seo-faq-q-text {
        min-width: 0;
        flex: 1;
    }
    .seo-faq-answer {
        padding: 0 14px 18px;
        font-size: 14px;
    }

    .seo-stats-strip {
        padding: 20px 16px;
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .seo-stat-num {
        font-size: 26px;
    }
    .seo-stat-item {
        min-width: 0;
    }

    .seo-solutions-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .seo-integrations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .seo-integration-tile {
        min-width: 0;
        font-size: 13px;
    }

    .seo-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .seo-eco-card {
        padding: 20px 16px;
        min-width: 0;
    }
    .seo-eco-card h3,
    .seo-eco-lead {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .seo-usecase-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .seo-usecase-card {
        padding: 22px 16px;
        min-width: 0;
    }
    .seo-usecase-card h3 {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .seo-related-grid {
        grid-template-columns: 1fr;
    }
    .seo-related-card {
        min-width: 0;
    }

    .cta-mid {
        padding: 44px 0;
    }
    .cta-mid .section-subtitle {
        font-size: 15px;
    }
    .cta-mid .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-mid .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .seo-section img,
    .seo-section-alt img,
    .seo-page-hero img,
    .seo-content-block img,
    .seo-content-visual img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 400px) {
    .brand {
        font-size: 18px;
        gap: 8px;
    }
    .brand img {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 380px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* ---- Registry template: feature grid ---- */
.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.seo-feature-card {
    background: var(--bg-white, #fff);
    border: 1px solid var(--border-color, #DDE2EA);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,.08));
}
.seo-feature-icon {
    font-size: 28px;
    color: var(--odoo-primary, #1D4ED8);
    margin-bottom: 12px;
}

/* ---- Contact page ---- */
.seo-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.seo-contact-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color, #DDE2EA);
    background: var(--bg-white, #fff);
}
.seo-contact-card i { font-size: 32px; color: var(--odoo-primary); margin-bottom: 12px; }

/* ---- Blog ---- */
.seo-page-hero--compact { padding-bottom: 32px; }
.blog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}
.blog-sidebar-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.blog-cat-nav { display: flex; flex-direction: column; gap: 6px; }
.blog-cat-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
}
.blog-cat-nav a:hover, .blog-cat-nav a.active {
    background: var(--bg-light);
    color: var(--odoo-primary);
    font-weight: 600;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.blog-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    background: var(--bg-white);
}
.blog-card-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--odoo-primary);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.blog-card h2 { font-size: 18px; margin: 10px 0; line-height: 1.35; }
.blog-card h2 a { color: inherit; text-decoration: none; }
.blog-card h2 a:hover { color: var(--odoo-primary); }
.blog-card time { font-size: 13px; color: var(--text-muted); }
.blog-pagination { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.blog-pagination a {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-secondary);
}
.blog-pagination a.active { background: var(--odoo-primary); color: #fff; border-color: var(--odoo-primary); }
.blog-article-inner { max-width: 780px; margin: 0 auto; }
.blog-article-header { margin-bottom: 32px; }
.blog-article-header h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.2; margin: 12px 0; }
.blog-article-body { line-height: 1.75; font-size: 17px; }
.blog-article-body h2 { margin-top: 32px; font-size: 22px; }
.blog-article-body ul { padding-left: 24px; }
.blog-article-footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-color); }
.blog-article-footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-color); }

.seo-ref-logo-grid {
    display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center;
}
.seo-ref-logo-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    min-width: 100px; text-align: center; font-size: 13px; color: var(--text-secondary);
}
.seo-ref-logo-item img { border-radius: 12px; object-fit: cover; }
/* Logosu olmayan işletme: baş harf karosu */
.seo-ref-logo-harf {
    display: flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 12px;
    background: var(--bg-light, #F1F5F9); border: 1px solid var(--border-color);
    font-size: 26px; font-weight: 700; color: var(--text-primary);
}

.seo-platform-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; max-width: 720px; margin: 0 auto;
}
.seo-platform-card {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 28px 20px; border-radius: 12px; border: 1px solid var(--border-color);
    background: var(--bg-white); text-decoration: none; color: var(--text-primary);
    transition: box-shadow .2s, border-color .2s;
}
.seo-platform-card i { font-size: 36px; color: var(--odoo-primary); }
.seo-platform-card:hover { box-shadow: var(--shadow-md); border-color: var(--odoo-primary); }

@media (max-width: 768px) {
    .blog-cat-nav { flex-direction: row; flex-wrap: wrap; }
}

/* ==========================================================================
   BLOG — profesyonel katman (2026-08-20)
   Liste: öne çıkan yazı + kart ızgarası + sayaçlı kenar çubuğu
   Yazı: içindekiler, yazar/okuma süresi, tipografi, paylaşım, ilgili yazılar
   ========================================================================== */
.blog-hero { padding-bottom: 44px; }
.blog-hero .seo-hero-eyebrow { margin-bottom: 14px; }
.blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 18px 0 0;
    font-size: 13.5px;
    color: var(--text-muted);
}
.blog-hero-meta span { display: inline-flex; align-items: center; gap: 7px; }

.blog-section { padding-top: 56px; }
.blog-layout { grid-template-columns: 268px minmax(0, 1fr); gap: 44px; }
.blog-sidebar { display: grid; gap: 18px; position: sticky; top: 96px; }
.blog-side-box {
    padding: 20px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}
.blog-side-box .blog-sidebar-title {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.blog-cat-nav { max-height: 420px; overflow-y: auto; }
.blog-cat-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 10px;
}
.blog-cat-count {
    flex: none;
    min-width: 26px;
    padding: 1px 7px;
    border-radius: 999px;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 11.5px;
    font-weight: 700;
    text-align: center;
}
.blog-cat-nav a.active .blog-cat-count { background: rgba(37, 99, 235, 0.12); color: #1d4ed8; }

.blog-side-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.blog-side-list li { display: grid; gap: 3px; }
.blog-side-list a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    text-decoration: none;
}
.blog-side-list a:hover { color: var(--odoo-primary); }
.blog-side-list time { font-size: 12px; color: var(--text-muted); }

.blog-side-cta {
    padding: 22px 20px;
    border-radius: var(--border-radius-lg);
    background: #0A1628;
    color: #fff;
}
.blog-side-cta h2 { margin: 0 0 8px; font-size: 17px; font-weight: 700; color: #fff; }
.blog-side-cta p { margin: 0 0 16px; font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.78); }
.blog-side-cta .btn { width: 100%; justify-content: center; }

/* Öne çıkan yazı */
.blog-featured {
    position: relative;
    margin-bottom: 28px;
    padding: 30px 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: rgba(37, 99, 235, 0.05);
    overflow: hidden;
}
.blog-featured h2 { font-size: clamp(21px, 2.4vw, 28px); line-height: 1.28; margin: 12px 0 10px; }
.blog-featured h2 a { color: inherit; text-decoration: none; }
.blog-featured h2 a:hover { color: var(--odoo-primary); }
.blog-featured p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.7; color: var(--text-secondary); max-width: 62ch; }
.blog-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--odoo-primary);
    text-decoration: none;
}
.blog-featured-link:hover { gap: 12px; }
.blog-featured-flag {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-size: 11.5px;
    font-weight: 700;
}

/* ---- Kategori kapakları ---- */
.blog-cover {
    display: block;
    overflow: hidden;
    background: #0A1628;
    line-height: 0;
}
.blog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card--kapakli .blog-cover {
    aspect-ratio: 1200 / 630;
    border-radius: calc(var(--border-radius-lg) - 1px) calc(var(--border-radius-lg) - 1px) 0 0;
}
.blog-card--kapakli:hover .blog-cover img { transform: scale(1.04); }
.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.blog-card-meta-sag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.blog-card-okuma {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
}

/* Öne çıkan kart: kapak üstte tam genişlik.
   Yan sütuna alınırsa kapaktaki başlık yatayda kırpılıyor — dikey kırpma
   güvenli, çünkü metin bloğu kapağın dikey ortasında duruyor. */
.blog-featured--kapakli {
    padding: 0;
    overflow: hidden;
}
.blog-featured--kapakli .blog-cover--featured {
    display: block;
    max-height: 268px;
}
.blog-featured--kapakli .blog-cover--featured img { max-height: 268px; }
.blog-featured--kapakli .blog-featured-body { padding: 24px 28px 26px; }
.blog-featured--kapakli:hover .blog-cover img { transform: scale(1.03); }
/* Rozet koyu kapağın üzerinde duruyor — okunması için opak zemin şart */
.blog-featured--kapakli .blog-featured-flag {
    top: 16px;
    right: 16px;
    background: #ffffff;
    color: var(--odoo-primary);
    box-shadow: 0 2px 10px rgba(10,22,40, 0.35);
}

/* Kartlar */
.blog-card {
    display: flex;
    flex-direction: column;
    padding: 22px;
    transition: var(--transition);
}
/* Kapaklı kartta iç boşluk gövdeye taşınır — kapak kenara yaslanır */
.blog-card--kapakli { padding: 0; overflow: hidden; }
.blog-card--kapakli .blog-card-body { padding: 20px 22px 18px; }
.blog-card:hover {
    transform: translateY(-3px);
    border-color: var(--odoo-primary);
    box-shadow: var(--shadow);
}
.blog-card h2, .blog-card h3 { font-size: 17.5px; margin: 10px 0 8px; line-height: 1.38; font-weight: 700; }
.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card h3 a:hover { color: var(--odoo-primary); }
.blog-card p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}
.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 12.5px;
    color: var(--text-muted);
}
.blog-card-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--odoo-primary); }
.blog-card:hover .blog-card-more { gap: 9px; }

.blog-pagination { justify-content: center; align-items: center; margin-top: 40px; }
.blog-pagination a { min-width: 42px; text-align: center; font-weight: 600; transition: var(--transition); }
.blog-pagination a:hover { border-color: var(--odoo-primary); color: var(--odoo-primary); }
.blog-pagination-gap { color: var(--text-muted); padding: 0 2px; }

/* Yazı sayfası kapağı */
.blog-article-cover {
    max-width: 900px;
    margin: 0 auto 34px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    line-height: 0;
}
.blog-article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Yazı sayfası ---- */
.blog-article-header {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}
.blog-article-header h1 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -0.02em; font-weight: 800; }
.blog-article-lead {
    margin: 0 auto 20px;
    max-width: 70ch;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-secondary);
}
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--text-muted);
}
.blog-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-color); }
.blog-author { display: inline-flex; align-items: center; gap: 10px; }
.blog-author-badge {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
}
.blog-author > span { display: grid; text-align: left; line-height: 1.3; }
.blog-author strong { font-size: 13.5px; color: var(--text-primary); }
.blog-author small { font-size: 11.5px; color: var(--text-muted); }

.blog-article-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 760px);
    gap: 48px;
    justify-content: center;
    align-items: start;
}
.blog-article-main { min-width: 0; }

.blog-toc {
    position: sticky;
    top: 96px;
    padding: 20px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: var(--bg-light);
}
.blog-toc-title {
    margin: 0 0 12px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.blog-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.blog-toc li { font-size: 13.5px; line-height: 1.45; }
.blog-toc li.blog-toc-l3 { padding-left: 14px; font-size: 13px; }
.blog-toc a { color: var(--text-secondary); text-decoration: none; }
.blog-toc a:hover { color: var(--odoo-primary); }

/* Okuma tipografisi */
.blog-article-body { font-size: 17px; line-height: 1.78; color: var(--text-secondary); }
.blog-article-body > *:first-child { margin-top: 0; }
.blog-article-body h2 {
    margin: 40px 0 14px;
    font-size: clamp(21px, 2.4vw, 27px);
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    scroll-margin-top: 100px;
}
.blog-article-body h3 {
    margin: 28px 0 10px;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    scroll-margin-top: 100px;
}
.blog-article-body p { margin: 0 0 18px; }
.blog-article-body a { color: var(--odoo-primary); text-decoration: underline; text-underline-offset: 3px; }
.blog-article-body strong { color: var(--text-primary); font-weight: 700; }
.blog-article-body ul, .blog-article-body ol { margin: 0 0 20px; padding-left: 22px; }
.blog-article-body li { margin-bottom: 9px; }
.blog-article-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 22px 0; }
.blog-article-body blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    border-left: 3px solid var(--odoo-primary);
    border-radius: 0 10px 10px 0;
    background: var(--bg-light);
    color: var(--text-primary);
    font-size: 16.5px;
}
.blog-article-body blockquote p:last-child { margin-bottom: 0; }
.blog-article-body code {
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--bg-light);
    font-size: 14.5px;
}
.blog-article-body pre {
    margin: 22px 0;
    padding: 16px 18px;
    border-radius: 12px;
    background: #0A1628;
    color: #DDE2EA;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
}
.blog-article-body pre code { background: none; padding: 0; color: inherit; }
.blog-article-body table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    font-size: 15px;
    display: block;
    overflow-x: auto;
}
.blog-article-body th, .blog-article-body td {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}
.blog-article-body th { background: var(--bg-light); color: var(--text-primary); font-weight: 700; }

/* Paylaşım + gövde içi CTA */
.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.blog-share-label { margin-right: 4px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.blog-share-btn {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.blog-share-btn:hover { border-color: var(--odoo-primary); color: var(--odoo-primary); transform: translateY(-2px); }

.blog-inline-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 30px;
    padding: 24px 26px;
    border-radius: var(--border-radius-lg);
    background: rgba(37, 99, 235, 0.07);
    border: 1px solid var(--border-color);
}
.blog-inline-cta h2 { margin: 0 0 6px; font-size: 19px; font-weight: 800; color: var(--text-primary); }
.blog-inline-cta p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

.blog-article-footer { display: flex; flex-wrap: wrap; gap: 12px; }

.blog-related { max-width: 1100px; margin: 64px auto 0; }
.blog-related h2 {
    margin: 0 0 22px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
}

@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr; gap: 30px; }
    .blog-sidebar { position: static; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    .blog-cat-nav { max-height: none; flex-direction: row; flex-wrap: wrap; }
    .blog-cat-nav a { border: 1px solid var(--border-color); }
    .blog-article-layout { grid-template-columns: minmax(0, 1fr); gap: 26px; }
    .blog-toc { position: static; }
}

@media (max-width: 640px) {
    .blog-featured { padding: 24px 20px; }
    .blog-featured-flag { position: static; margin-bottom: 12px; }
    .blog-article-body { font-size: 16.5px; }
    .blog-inline-cta { flex-direction: column; align-items: flex-start; }
}

/* Blog kenar CTA — koyu zeminde başlık ana tema kuralıyla eziliyordu */
.blog-side-cta h2,
.blog-sidebar .blog-side-cta h2 { color: #fff !important; }
/* Öne çıkan yazının meta satırı kart ızgarasındaki gibi iki uca yaslanmasın */
.blog-featured .blog-card-meta {
    justify-content: flex-start;
    gap: 10px;
    border-top: none;
    padding-top: 0;
}

/* ==========================================================================
   MARKA KİLİDİ — pazaryeri landing hero'sunda "Estorix × Marka"
   (seo_page_brand() dolu olan sayfalarda eyebrow yerine basılır)
   ========================================================================== */
.seo-brand-lock {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}
.seo-brand-lock__mark { width: 34px; height: 34px; object-fit: contain; }
.seo-brand-lock__mark.seo-brand-lock__mark--wordlogo { width: auto; height: 16px; max-width: none; object-fit: initial; }
.seo-brand-lock__x { font-size: 15px; font-weight: 600; color: var(--text-muted); }
.seo-brand-lock__logo { height: 26px; width: auto; max-width: 160px; object-fit: contain; }
.seo-brand-lock__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 4px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(15,157,110, 0.12);
    color: #0B7A55;
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
}
.seo-brand-lock__pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* İlgili çözümler kartında marka logosu (ikon yerine) */
.seo-related-card--brand .seo-related-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 34px;
    margin-bottom: 6px;
}
.seo-related-card--brand .seo-related-logo img {
    height: 26px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 1024px) {
    .seo-brand-lock { margin-left: auto; margin-right: auto; }
    .seo-related-card--brand .seo-related-logo { justify-content: center; }
    .seo-related-card--brand .seo-related-logo img { object-position: center; }
}

@media (max-width: 520px) {
    .seo-brand-lock { flex-wrap: wrap; justify-content: center; border-radius: 20px; }
}

/* 2026-09-27 SEO yeniden yazımı — hub kartları, kaynak listesi, tek kolon metin blokları */
.seo-content-block--metin { grid-template-columns: 1fr; max-width: 860px; }
.seo-content-block--metin .seo-section-html table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
.seo-content-block--metin .seo-section-html th, .seo-content-block--metin .seo-section-html td,
.seo-section-html table th, .seo-section-html table td { padding: 8px 10px; border-bottom: 1px solid #E3E8EF; text-align: left; vertical-align: top; }
.seo-section-html table th { background: #F7F8FA; font-weight: 600; }
.seo-section-html { overflow-x: auto; }
.seo-hub-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.seo-hub-grid .seo-related-card h3 { color: inherit; }
.seo-sources { padding-left: 20px; font-size: 14px; line-height: 1.6; }
.seo-sources li { margin: 6px 0; }
.seo-guide-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.seo-guide-links a { display: block; padding: 12px 14px; border: 1px solid #E3E8EF; border-radius: 12px; background: #fff; color: #0A1628; text-decoration: none; font-weight: 500; }
.seo-guide-links a:hover { border-color: #1F4FA3; }
.seo-draft-note { display: inline-block; }
.edv__price--sor { font-size: 14px; color: #5B6678; }

/* ==== estorix-corporate.css ==== */
/**
 * Estorix — kurumsal tema (ana sayfa)
 * Ağır animasyon, gökkuşağı gradient ve dekoratif hareketleri bastırır;
 * tek renk ailesi: lacivert/antrasit + tek vurgu rengi.
 */
:root {
  --corp-ink: #0A1628;
  --corp-ink-muted: #2C3647;
  --corp-surface: #F7F8FA;
  --corp-border: #DDE2EA;
  --corp-accent: #2563EB;
  --corp-accent-hover: #1D4ED8;
  /* Temel tasarım değişkenlerinin kurumsal karşılığı */
  --odoo-primary: var(--corp-ink);
  --odoo-primary-dark: #0A1220;
  --odoo-purple: var(--corp-ink-muted);
  --odoo-teal: var(--corp-accent);
  --odoo-orange: #434D5E;
  --odoo-green: #0F9D6E;
  --bg-light: var(--corp-surface);
  --border-color: var(--corp-border);
  --shadow-sm: 0 1px 2px rgba(10,22,40, 0.06);
  --shadow: 0 4px 12px rgba(10,22,40, 0.08);
  --shadow-lg: 0 12px 28px rgba(10,22,40, 0.1);
  --transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Tipografi: yalnızca Inter */
body {
  letter-spacing: -0.015em;
}

.hero-title,
.section-title,
.section-subtitle,
.hero-subtitle,
.hero-badge {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Vurgu metni — gradient yok, tek keskin vurgu */
.gradient-text,
.gradient-text.gradient-text--live,
.hero-title .gradient-text,
.section-title .gradient-text {
  background: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  color: var(--corp-accent) !important;
  font-family: inherit !important;
  font-weight: 700 !important;
}

.hero-title span:not(.gradient-text) {
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  color: var(--corp-ink) !important;
  font-family: inherit !important;
  font-weight: 700 !important;
}

/* Hero */
.hero {
  background: var(--corp-surface);
  border-bottom: 1px solid var(--corp-border);
}

/* Hero — Simpra benzeri koyu premium */
.hero--corporate {
  position: relative;
  background:
    #0A1628;
  color: #fff;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  border-bottom: none;
}

.hero--corporate .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero--corporate .hero-layout {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 64px;
}

.hero--corporate .hero-content {
  max-width: 600px;
}

.hero--corporate .hero-bg-img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(0.2);
}

/* Alt karartma — metin okunaklılığı */
.hero--corporate::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(10,22,40, 0) 40%, rgba(10,22,40, 0.65) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero--corporate .hero-title {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero--corporate .hero-title span:not(.gradient-text) {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.hero--corporate .hero-title .gradient-text {
  color: #3B82F6 !important;
  -webkit-text-fill-color: #3B82F6 !important;
}

.hero--corporate .hero-subtitle {
  color: #C3CAD6;
  font-size: 18px;
  max-width: 30em;
  margin-bottom: 28px;
}

.hero--corporate .hero-subtitle strong {
  color: #fff;
}

.hero--corporate .hero-content,
.hero--corporate .hero-image {
  position: relative;
  z-index: 1;
}

/* Eyebrow rozeti */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93B4FB;
  background: rgba(59,130,246, 0.1);
  border: 1px solid rgba(59,130,246, 0.25);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-eyebrow i {
  color: #3B82F6;
}

/* Güven noktaları */
.hero-trust-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hero-trust-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #8A93A3;
}

.hero-trust-points li i {
  color: #3B82F6;
  font-size: 14px;
}

/* Demo (ikincil) buton — koyu hero üzerinde görünür */
.hero--corporate .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero--corporate .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

/* Ürün görseli — cam kart yerine yumuşak parıltı */
.hero--corporate .hero-image {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 540px;
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.55));
}

.hero--corporate .hero-image picture {
  background: transparent;
}

@media (max-width: 768px) {
  .hero--corporate {
    min-height: auto;
    padding: 96px 0 56px;
    text-align: center;
  }

  .hero-eyebrow {
    margin-bottom: 16px;
  }

  .hero-trust-points {
    justify-content: center;
  }

  .hero--corporate .hero-image {
    max-width: min(320px, 100%);
    margin: 0 auto 8px;
  }
}

/* Güven bandı (trust band) */
.estorix-trust-band {
  background: #F7F8FA;
  border-top: 1px solid #DDE2EA;
  border-bottom: 1px solid #DDE2EA;
  padding: 18px 0;
  text-align: center;
}

.estorix-trust-band__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8A93A3;
  margin-bottom: 12px;
}

.estorix-trust-band__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

.estorix-trust-band__name {
  font-size: 14px;
  font-weight: 600;
  color: #434D5E;
  letter-spacing: -0.01em;
}

.estorix-trust-band__count {
  font-size: 13px;
  color: #5B6678;
}

.hero--corporate .epm-aurora,
.hero--epm .epm-aurora {
  display: none !important;
}

.epm-shimmer-wrap::after {
  display: none !important;
}

.hero-reveal-row {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.hero-image--tilt picture {
  transform: none !important;
  transition: none !important;
}

.hero-badge {
  background: #fff;
  border: 1px solid var(--corp-border);
  color: var(--corp-ink-muted);
  font-weight: 500;
  border-radius: 6px;
}

/* Güven bandı — kayan metin yok */
.epm-trust-ticker {
  background: #fff;
  border-top: 1px solid var(--corp-border);
  border-bottom: 1px solid var(--corp-border);
  overflow: visible;
  padding: 14px 16px;
}

.epm-trust-ticker-track {
  animation: none !important;
  width: 100% !important;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-weight: 500;
  font-size: 13px;
  color: var(--corp-ink-muted);
}

.epm-trust-ticker-track span[aria-hidden='true'] {
  color: var(--corp-border);
}

/* Chip şeridi */
.epm-chip {
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
}

.epm-chip:hover,
.epm-chip:focus-visible {
  transform: none;
  border-color: var(--corp-accent);
  box-shadow: var(--shadow-sm);
}

.epm-chip-accent {
  border-color: rgba(37,99,235, 0.35);
  background: #fff;
  font-weight: 600;
  color: var(--corp-ink);
}

/* Nav alt çizgi */
.nav-links > a.epm-nav-link::after {
  background: var(--corp-accent);
  height: 2px;
}

.nav-links a:hover {
  color: var(--corp-ink);
}

/* Butonlar — az hareket */
.btn-primary {
  background: var(--corp-accent);
}

.btn-primary:hover {
  background: var(--corp-accent-hover);
  transform: none;
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--corp-ink);
  border-color: var(--corp-border);
}

.btn-secondary:hover {
  background: var(--corp-surface);
  border-color: var(--corp-ink-muted);
}

/* Özellik kartları */
.feature-card:hover {
  transform: none;
  box-shadow: var(--shadow);
  border-color: var(--corp-border);
}

.epm-tilt-card {
  transform: none !important;
  will-change: auto;
}

.epm-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.epm-float-card {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.epm-float-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}

/* ROI kutusu */
.epm-roi-hint {
  background: #fff;
  border: 1px solid var(--corp-border);
}

.epm-roi-icon {
  background: var(--corp-ink);
}

/* Sektör bandı */
.epm-marquee-section {
  background: #fff;
}

.epm-marquee-track {
  animation: none !important;
  width: 100% !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  font-weight: 500;
  font-size: 14px;
  color: var(--corp-ink-muted);
}

.epm-marquee-track span::before {
  content: none;
  margin: 0;
}

/* Derin özellik panelleri — nötr rozetler */
.df-badge-purple {
  background: rgba(10,22,40, 0.06);
  color: var(--corp-ink);
}
.df-badge-teal {
  background: rgba(37,99,235, 0.08);
  color: var(--corp-accent-hover);
}
.df-badge-orange {
  background: rgba(51, 65, 85, 0.08);
  color: var(--corp-ink-muted);
}
.df-badge-green {
  background: rgba(37,99,235, 0.06);
  color: var(--corp-accent-hover);
}

.df-visual-purple::before,
.df-visual-teal::before,
.df-visual-orange::before,
.df-visual-green::before {
  background: var(--corp-ink);
  opacity: 1;
}

/* CTA bölümü */
.cta-section {
  background: var(--corp-ink);
}

.hero .hero-cta {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .hero .hero-cta {
    justify-content: center;
  }
}

.cta-section .section-title .gradient-text {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.cta-section .btn-white {
  color: var(--corp-ink);
}

.cta-section .btn-white:hover {
  transform: none;
}

/* Logo / marka — X, Estori'ye bitişik (landing .brand-wordmark ile aynı hizaya) */
.brand-x {
  color: var(--estorix-blue, #2563EB) !important;
  letter-spacing: 0 !important;
  margin-left: -0.1em !important;
}

/* Uygulama kartı kurdele */
.app-flagship-ribbon {
  background: var(--corp-ink);
  box-shadow: none;
}

/* Ekosistem bölümü (seo-pages) */
.seo-eco-card--sosyalx {
  border-top-color: var(--corp-accent);
}
.seo-eco-card--erp {
  border-top-color: #96621A;
}
.seo-eco-card--pos {
  border-top-color: var(--corp-ink-muted);
}
.seo-eco-kicker {
  color: var(--corp-accent);
}
.seo-eco-card--pos .seo-eco-kicker {
  color: var(--corp-ink-muted);
}

/* Form / misc */
.app-store-banner-link {
  transform: none;
}

.app-store-banner-link:hover {
  transform: none;
}

/* Özellik ikonları — nötr kutu */
.feature-icon {
  background: #fff !important;
  color: var(--corp-accent) !important;
  border: 1px solid var(--corp-border);
}

.seo-eco-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.seo-integration-tile:hover {
  transform: none;
}

.seo-integration-tile:hover i {
  transform: none;
}

.seo-usecase-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* index.php #platform — üç kartın tamamına tutarlı kutu yüzeyi */
#platform.features-section .seo-ecosystem-grid--platform > article.seo-eco-card {
  background-color: #ffffff !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: var(--corp-border) !important;
  box-sizing: border-box !important;
}

#platform.features-section .seo-eco-card--featured.seo-eco-card--nlp {
  background-image: none !important;
  background-color: #EFF4FF !important;
}

/* ——— Simpra referanslı ana sayfa blokları (Estorix uyumlu) ——— */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.estorix-hero-kickers {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.estorix-hero-kickers__top {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--corp-ink-muted);
}

.estorix-hero-kickers__sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--corp-accent);
}

.estorix-section-kicker {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--corp-accent);
  margin-bottom: 8px;
}

/* Güçlü nedenler bandı */
.estorix-reasons-band {
  padding: 40px 0 36px;
  background: #fff;
  border-bottom: 1px solid var(--corp-border);
}

.estorix-reasons-band__title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--corp-ink);
  margin: 0 0 10px;
  text-align: center;
  letter-spacing: -0.02em;
}

.estorix-reasons-band__lead {
  text-align: center;
  color: var(--corp-ink-muted);
  max-width: 52rem;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.55;
}

.estorix-reasons-band__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 20px;
}

.estorix-reasons-band__grid {
  gap: 22px;
}

.estorix-reasons-band__item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #DDE2EA;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(10,22,40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.estorix-reasons-band__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10,22,40, 0.12);
  border-color: #C3CAD6;
}

.estorix-reasons-band__item-media {
  position: relative;
  display: block;
  height: 180px;
  overflow: hidden;
}

.estorix-reasons-band__item-media::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(10,22,40, 0) 45%, rgba(10,22,40, 0.28) 100%);
  pointer-events: none;
}

.estorix-reasons-band__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.estorix-reasons-band__item:hover .estorix-reasons-band__item-img {
  transform: scale(1.06);
}

.estorix-reasons-band__item-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--corp-ink);
  line-height: 1.5;
}

.estorix-reasons-band__item i {
  color: var(--corp-accent);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 16px;
}

/* İndirme bölümü — kompakt, dengeli */
.estorix-download {
  padding: 80px 0;
  background: var(--corp-surface);
  border-top: 1px solid var(--corp-border);
}

.estorix-download .section-header {
  margin-bottom: 40px;
}

.estorix-download__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.estorix-download__grid--stores {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-top: 20px;
}

.estorix-download__windows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--corp-border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(10,22,40, 0.04);
}

.estorix-download__windows-head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1;
}

.estorix-download__windows-intro {
  text-align: left;
}

.estorix-download__windows-intro .estorix-download__title {
  margin-bottom: 4px;
}

.estorix-download__windows-intro .estorix-download__desc {
  margin: 0;
  flex: none;
}

.estorix-download__windows-head .estorix-download__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.estorix-download__windows-options {
  display: flex;
  align-items: stretch;
  gap: 14px;
  flex-shrink: 0;
}

.estorix-download__windows-option {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.estorix-download__windows-option--legacy {
  padding-left: 14px;
  border-left: 1px solid var(--corp-border);
}

.estorix-download__version-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--corp-ink-muted);
  text-align: center;
}

.estorix-download__btn-pair {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.estorix-download__btn-pair .estorix-download__btn {
  flex: 1;
  min-width: 0;
}

.estorix-download__card {
  background: #fff;
  border: 1px solid var(--corp-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.estorix-download__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10,22,40, 0.1);
  border-color: #C3CAD6;
}

.estorix-download__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--corp-ink);
  color: #fff;
  font-size: 26px;
  margin-bottom: 18px;
}

.estorix-download__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--corp-ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.estorix-download__desc {
  font-size: 13.5px;
  color: var(--corp-ink-muted);
  margin: 0 0 20px;
  line-height: 1.5;
  flex: 1;
}

.estorix-download__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--corp-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.estorix-download__btn:hover {
  background: var(--corp-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.estorix-download__btn--store {
  background: var(--corp-ink);
}

.estorix-download__btn--store:hover {
  background: var(--odoo-primary-dark);
}

.estorix-download__btn--outline {
  background: #fff;
  color: var(--corp-ink);
  border: 1px solid var(--corp-border);
  box-shadow: none;
}

.estorix-download__btn--outline:hover {
  background: var(--corp-surface);
  color: var(--corp-ink);
  border-color: #8A93A3;
}

.estorix-download__soon {
  margin: 28px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--corp-ink-muted);
}

.estorix-download__soon i {
  color: #8A93A3;
  margin: 0 2px;
}

@media (max-width: 920px) {
  .estorix-download__windows {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .estorix-download__windows-options {
    width: 100%;
  }

  .estorix-download__windows-option {
    flex: 1;
    min-width: 0;
  }

  .estorix-download__windows-option--legacy {
    padding-left: 0;
    padding-top: 18px;
    border-left: none;
    border-top: 1px solid var(--corp-border);
  }
}

@media (max-width: 768px) {
  .estorix-download {
    padding: 56px 0;
  }

  .estorix-download__windows {
    padding: 22px 20px;
  }

  .estorix-download__windows-head {
    flex-direction: column;
    text-align: center;
  }

  .estorix-download__windows-intro {
    text-align: center;
  }

  .estorix-download__windows-options {
    flex-direction: column;
  }

  .estorix-download__grid,
  .estorix-download__grid--stores {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 420px;
  }
}

/* Ürün ekran görüntüleri — kategori sekmeli (Simpra benzeri) */
.estorix-showcase {
  padding: 84px 0 88px;
  background:
    #0A1220;
  overflow: hidden;
}

.estorix-showcase .section-header {
  margin-bottom: 32px;
}

.estorix-showcase .section-title {
  color: #fff;
}

.estorix-showcase .section-title .gradient-text {
  color: #3B82F6 !important;
  -webkit-text-fill-color: #3B82F6 !important;
}

.estorix-showcase .estorix-section-kicker {
  color: #93B4FB;
}

.estorix-showcase .section-subtitle {
  color: #8A93A3;
}

/* Sekmeler */
.estorix-showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.estorix-showcase__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #8A93A3;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.estorix-showcase__tab i {
  font-size: 14px;
  opacity: 0.85;
}

.estorix-showcase__tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59,130,246, 0.35);
  color: #DDE2EA;
}

.estorix-showcase__tab.is-active {
  background: #1D4ED8;
  border-color: #1D4ED8;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,99,235, 0.45);
}

.estorix-showcase__tab.is-active i {
  opacity: 1;
}

/* Panel alanı */
.estorix-showcase__stage {
  position: relative;
}

.estorix-showcase__panel {
  animation: estorixShowcaseFade 0.35s ease;
}

.estorix-showcase__panel[hidden] {
  display: none !important;
}

body.estorix-vibe.is-corp .estorix-showcase .section-title,
body.estorix-vibe.is-corp .estorix-showcase .section-subtitle {
  color: var(--corp-ink, #0A1628);
}

body.estorix-vibe.is-corp .estorix-showcase .section-subtitle {
  color: var(--corp-grey, #54657a);
}

body.estorix-vibe.is-corp .estorix-showcase .estorix-section-kicker {
  color: var(--corp-accent, #2563EB);
}

@keyframes estorixShowcaseFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.estorix-showcase__split {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

/* Sol bilgi */
.estorix-showcase__info-title {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.estorix-showcase__info-lead {
  font-size: 15px;
  line-height: 1.65;
  color: #8A93A3;
  margin: 0 0 22px;
}

.estorix-showcase__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estorix-showcase__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #C3CAD6;
  line-height: 1.45;
}

.estorix-showcase__bullets li i {
  color: #3B82F6;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 13px;
}

/* Sağ görüntü alanı */
.estorix-showcase__viewer {
  min-width: 0;
}

.estorix-showcase__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  text-align: left;
  font-family: inherit;
  position: relative;
}

.estorix-showcase__device {
  background: #0A1628;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.estorix-showcase__zoom:hover .estorix-showcase__device {
  transform: translateY(-4px);
  border-color: rgba(59,130,246, 0.45);
  box-shadow:
    0 40px 72px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(37,99,235, 0.15);
}

.estorix-showcase__device-bar {
  height: 32px;
  background:
    radial-gradient(circle 4px at 18px 16px, #D14343 98%, transparent),
    radial-gradient(circle 4px at 36px 16px, #B7791F 98%, transparent),
    radial-gradient(circle 4px at 54px 16px, #0F9D6E 98%, transparent),
    #1A2436;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.estorix-showcase__main-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.estorix-showcase__zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #5B6678;
  transition: color 0.2s ease;
}

.estorix-showcase__zoom:hover .estorix-showcase__zoom-hint {
  color: #3B82F6;
}

/* Küçük önizleme şeridi */
.estorix-showcase__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.estorix-showcase__thumb {
  flex: 0 0 auto;
  width: 88px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #1A2436;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.estorix-showcase__thumb:hover {
  opacity: 0.9;
  border-color: rgba(59,130,246, 0.4);
}

.estorix-showcase__thumb.is-active {
  opacity: 1;
  border-color: #3B82F6;
  transform: scale(1.04);
}

.estorix-showcase__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.estorix-showcase__caption {
  margin: 14px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #5B6678;
}

/* Tam ekran lightbox */
.estorix-showcase-lightbox {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 10050;
  background: rgba(2, 6, 14, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.estorix-showcase-lightbox[hidden] {
  display: none !important;
}

.estorix-showcase-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}

.estorix-showcase-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.estorix-showcase-lightbox__figure {
  margin: 0;
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.estorix-showcase-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 48px);
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
}

.estorix-showcase-lightbox__caption {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #8A93A3;
  text-align: center;
}

@media (max-width: 960px) {
  .estorix-showcase__split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .estorix-showcase__info {
    text-align: center;
  }

  .estorix-showcase__bullets {
    align-items: center;
  }

  .estorix-showcase__bullets li {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .estorix-showcase {
    padding: 56px 0 64px;
    overflow-x: clip;
  }

  .estorix-showcase__stage {
    min-width: 0;
  }

  .estorix-showcase__split {
    min-width: 0;
  }

  .estorix-showcase__viewer {
    min-width: 0;
    overflow: hidden;
  }

  .estorix-showcase__device {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .estorix-showcase__main-img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .estorix-showcase__tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-bottom: 28px;
    scrollbar-width: none;
  }

  .estorix-showcase__tabs::-webkit-scrollbar {
    display: none;
  }

  .estorix-showcase__tab {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 13px;
  }

  .estorix-showcase-lightbox {
    padding:
      max(16px, env(safe-area-inset-top, 0px))
      max(16px, env(safe-area-inset-right, 0px))
      max(16px, env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
  }

  .estorix-showcase-lightbox__close {
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    width: 42px;
    height: 42px;
  }
}

/* Modül ızgarası */
.estorix-module-grid-section {
  padding: 48px 0 24px;
  background: var(--corp-surface);
  border-bottom: 1px solid var(--corp-border);
}

.estorix-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.estorix-module-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--corp-border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 120px;
}

.estorix-module-tile:hover {
  border-color: var(--corp-accent);
  box-shadow: var(--shadow);
}

.estorix-module-tile__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--corp-surface);
  color: var(--corp-accent);
  font-size: 18px;
}

.estorix-module-tile__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--corp-ink);
}

.estorix-module-tile__desc {
  font-size: 13px;
  color: var(--corp-ink-muted);
  line-height: 1.45;
}

/* İki sütun keşif */
.estorix-split-band {
  padding: 28px 0 40px;
  background: var(--corp-surface);
}

.estorix-split-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .estorix-split-band__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.estorix-split-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--corp-border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.estorix-split-card:hover {
  border-color: var(--corp-accent);
  box-shadow: var(--shadow);
}

.estorix-split-card--accent {
  border-color: rgba(37,99,235, 0.35);
  background: #E7F6F0;
}

.estorix-split-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--corp-ink-muted);
}

.estorix-split-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--corp-ink);
}

.estorix-split-card__text {
  font-size: 14px;
  color: var(--corp-ink-muted);
  line-height: 1.55;
  margin: 0;
}

.estorix-split-card__cta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--corp-accent);
}

.estorix-split-card__cta i {
  margin-left: 6px;
  font-size: 12px;
}

/* Puan rozeti */
.estorix-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 14px;
  margin: 0 auto 16px;
  background: #fff;
  border: 1px solid var(--corp-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--corp-ink);
}

.estorix-rating-pill__stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.estorix-rating-pill__stars .estorix-rating-star {
  font-size: 15px;
  line-height: 1;
}

.estorix-rating-star--on {
  color: #ca8a04;
}

.estorix-rating-star--off {
  color: #C3CAD6;
}

.section-header .estorix-rating-pill {
  justify-content: center;
}

#testimonials .section-header {
  text-align: center;
}

/* Fiyat önizleme (iki kart) */
.estorix-pricing-preview-section .section-header {
  text-align: center;
  margin-bottom: 28px;
}

.estorix-pricing-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .estorix-pricing-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.estorix-pricing-preview-footer {
  text-align: center;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.estorix-pricing-preview-note {
  font-size: 13px;
  color: var(--corp-ink-muted);
  margin: 0;
}

.estorix-pricing-preview-note a {
  color: var(--corp-accent);
  font-weight: 600;
}

/* Referans logo şeridi + destek + anonim özetler (#testimonials — yüksek özgüllük) */
#testimonials.seo-ecosystem-section .container {
  max-width: 1100px;
}

/* 2026-09-22: kayan logo şeridi (.estorix-ref-marquee*) kaldırıldı — yerini sabit
   referans duvarı aldı: estorix-home-pro.css → .ex-ref-wall */

#testimonials .estorix-support-promise {
  margin: 0 auto 32px;
  max-width: 720px;
  padding: 26px 24px;
  background: #E7F6F0;
  border: 1px solid rgba(37,99,235, 0.28);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(10,22,40, 0.06);
  box-sizing: border-box;
}

#testimonials .estorix-support-promise__header {
  margin: 0;
}

#testimonials .estorix-support-promise__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--corp-ink);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.35;
}

#testimonials .estorix-support-promise__title i {
  color: var(--corp-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

#testimonials .estorix-support-promise__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--corp-ink-muted);
}

#testimonials .estorix-support-promise__lead strong {
  color: var(--corp-ink);
  font-weight: 600;
}

#testimonials .estorix-composite-quotes {
  margin: 0 auto 12px;
  max-width: 100%;
  padding: 20px 16px 18px;
  background: #ffffff;
  border: 1px solid var(--corp-border);
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: none;
}

#testimonials .estorix-composite-quotes__heading {
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 18px;
  color: var(--corp-ink);
  letter-spacing: -0.02em;
}

#testimonials .estorix-composite-quotes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

@media (min-width: 768px) {
  #testimonials .estorix-composite-quotes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #testimonials .estorix-quote-card--featured {
    grid-column: 1 / -1;
  }
}

#testimonials blockquote.estorix-quote-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 14px 14px 12px;
  background: #F7F8FA;
  border: 1px solid var(--corp-border);
  border-radius: 8px;
  border-top: 1px solid var(--corp-border);
  box-shadow: none;
  box-sizing: border-box;
  min-width: 0;
}

#testimonials .estorix-quote-card__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

#testimonials .estorix-quote-card__logo-wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--corp-border);
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#testimonials .estorix-quote-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  box-sizing: border-box;
}

#testimonials .estorix-quote-card__venue-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

#testimonials .estorix-quote-card__venue {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: var(--corp-ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

#testimonials .estorix-quote-card__badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--corp-ink-muted);
  text-transform: none;
  letter-spacing: 0;
}

#testimonials .estorix-quote-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 0 8px;
}

#testimonials .estorix-quote-card__star {
  font-size: 11px;
  line-height: 1;
  color: #ca8a04;
}

#testimonials .estorix-quote-card__text {
  flex: 1 1 auto;
  margin: 0 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--corp-ink);
  font-style: normal;
}

#testimonials blockquote .estorix-quote-card__foot {
  margin-top: auto;
  padding-top: 10px;
  margin-bottom: 0;
  border-top: 1px solid #e8ecf1;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--corp-ink-muted);
}

#testimonials .estorix-quote-card__role {
  display: block;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  color: var(--corp-ink-muted);
}

@media (max-width: 767px) {
  #testimonials .estorix-ref-logos-block {
    padding: 22px 16px 18px;
  }
  #testimonials .estorix-composite-quotes {
    padding: 22px 16px 18px;
  }
}

/* Header — oturum açık hesap chip (Giriş Yap menüsüyle birlikte) */
.header-buttons {
  flex-wrap: nowrap;
  gap: 10px;
}

.estorix-account-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 180px;
  padding: 4px 12px 4px 4px;
  border: 1px solid var(--corp-border);
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.estorix-account-chip:hover {
  background: var(--corp-surface);
  border-color: #C3CAD6;
  color: inherit;
}

.estorix-account-chip__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37,99,235, 0.1);
  color: var(--corp-accent);
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.estorix-account-chip__name {
  min-width: 0;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--corp-ink-muted);
  letter-spacing: -0.01em;
}

.estorix-account-chip:hover .estorix-account-chip__name {
  color: var(--corp-ink);
}

.estorix-account-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--corp-border);
  border-radius: 10px;
  background: var(--corp-surface);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.estorix-account-banner:hover {
  border-color: #C3CAD6;
  background: #fff;
  color: inherit;
}

.estorix-account-banner__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37,99,235, 0.1);
  color: var(--corp-accent);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.estorix-account-banner__name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--corp-ink);
  letter-spacing: -0.01em;
}

.estorix-account-banner__arrow {
  font-size: 11px;
  color: #8A93A3;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.estorix-account-banner:hover .estorix-account-banner__arrow {
  opacity: 1;
  transform: translateX(2px);
}

@media (max-width: 1100px) {
  .estorix-account-chip__name {
    display: none;
  }

  .estorix-account-chip {
    max-width: none;
    padding: 4px;
  }
}

@media (max-width: 991px) {
  .header-buttons .estorix-account-chip {
    display: none;
  }
}

/* ==== entegrasyon-donanim.css ==== */
/* ============================================================
   ESTORIX — Entegrasyon ızgarası (.esen) + Donanım vitrini (.edv)
   Düzen referansı: Simpra'nın "tüm senaryolara hazırsınız" ve
   "sizi geleceğe taşır" bölümleri.
   ============================================================ */

.esen, .edv { --e-mavi: #2563eb; --e-koyu: #0A1628; --e-gri: #5B6678; }

.esen__kicker, .edv__kicker {
    margin: 0 0 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--e-mavi);
}

/* ============================================================
   Entegrasyon ızgarası
   ============================================================ */

.esen { padding: 64px 0; background: #fff; }

.esen__wrap { margin-top: 34px; }

/* Simpra düzeni: açık gri, köşesi yuvarlatılmış döşemeler; her döşemede
   YALNIZ marka logosu ortalanır.

   Grid değil FLEX: entegrasyon sayısı sabit değil ve ızgarada 7 kart
   6+1 diziliyordu — son satırda tek başına kalan kart kırık duruyordu.
   Flex + justify-content:center ile her satır (özellikle eksik kalan
   sonuncusu) kendiliğinden ortalanır, sayı kaça çıkarsa çıksın. */
.esen__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    max-width: 880px;   /* 4 × 200px + 3 × 18px boşluk → satırda 4 kart */
    margin: 0 auto;
}

.esen__card {
    position: relative;
    flex: 0 0 auto;
    width: 200px;
    display: grid;
    place-items: center;
    /* Kare döşeme: logoların en-boy oranı 1.7–5.4 arasında değişiyor,
       sabit kutu + object-fit hepsini aynı görsel ağırlıkta tutuyor. */
    aspect-ratio: 1 / 1;
    padding: 26px 22px;
    background: #f4f5f7;
    border: 1px solid transparent;
    border-radius: 18px;
    text-decoration: none;
    transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.esen__card:hover {
    background: #fff;
    border-color: #DDE2EA;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(10,22,40, .10);
}

.esen__logo {
    max-width: 100%;
    max-height: 62px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Logolar beyaz zeminli PNG; gri döşemede kutu kenarı görünmesin */
    mix-blend-mode: multiply;
}
.esen__logo--yok {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--e-koyu);
    font-size: 14px;
    font-weight: 700;
    mix-blend-mode: normal;
}
.esen__logo--yok i { font-size: 26px; color: var(--e-mavi); }

/* Yalnız canlı olmayan entegrasyonda görünür (bkz. render fonksiyonu) */
.esen__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #F6E7C6;
    color: #96621A;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .02em;
}

.esen__foot { margin-top: 22px; text-align: center; }
.esen__foot-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--e-mavi);
    text-decoration: none;
}
.esen__foot-link:hover { text-decoration: underline; }
.esen__note { margin: 12px 0 0; font-size: 12px; color: #8A93A3; }

/* ============================================================
   Donanım vitrini
   ============================================================ */

.edv { padding: 64px 0; background: #F7F8FA; }

.edv__tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0 28px;
}
.edv__tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border: 1.5px solid #DDE2EA;
    border-radius: 999px;
    background: #fff;
    color: var(--e-gri);
    font-size: 14px;
    font-weight: 650;
    font-family: inherit;
    cursor: pointer;
    transition: background .16s, border-color .16s, color .16s;
}
.edv__tab span {
    padding: 1px 7px;
    border-radius: 999px;
    background: #EEF1F5;
    font-size: 11.5px;
    font-weight: 700;
    color: #8A93A3;
}
.edv__tab:hover { border-color: #C3CAD6; color: var(--e-koyu); }
.edv__tab.is-active {
    background: var(--e-koyu);
    border-color: var(--e-koyu);
    color: #fff;
}
.edv__tab.is-active span { background: rgba(255, 255, 255, .18); color: #fff; }

.edv__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.edv__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid #DDE2EA;
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.edv__card:hover {
    border-color: #C3CAD6;
    box-shadow: 0 16px 36px rgba(10,22,40, .10);
    transform: translateY(-3px);
}
.edv__card[hidden] { display: none; }

.edv__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #F7F8FA;
    display: grid;
    place-items: center;
    padding: 18px;
    border-bottom: 1px solid #EEF1F5;
}
.edv__media-btn {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0;
    cursor: zoom-in;
    display: grid;
    place-items: center;
    position: relative;
}
.edv__media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .22s;
}
.edv__media-btn:hover img { transform: scale(1.04); }

.edv__zoom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(10,22,40, .72);
    color: #fff;
    font-size: 11px;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity .18s;
}
.edv__media-btn:hover .edv__zoom,
.edv__media-btn:focus-visible .edv__zoom { opacity: 1; }
.edv__media-yok { font-size: 40px; color: #C3CAD6; }
.edv__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 7px;
    background: rgba(10,22,40, .78);
    color: #fff;
    font-size: 10.5px;
    font-weight: 650;
    letter-spacing: .01em;
}

.edv__body { padding: 18px 18px 12px; flex: 1 1 auto; }
.edv__name {
    margin: 0 0 6px;
    font-size: 16.5px;
    font-weight: 750;
    color: var(--e-koyu);
    letter-spacing: -.01em;
    line-height: 1.35;
}
.edv__ozet {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--e-gri);
    line-height: 1.55;
}

.edv__specs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.edv__specs li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    line-height: 1.5;
    color: #434D5E;
}
.edv__specs li i { flex: 0 0 auto; margin-top: 3px; font-size: 10px; color: #0F9D6E; }

.edv__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px 16px;
    border-top: 1px solid #EEF1F5;
    margin-top: auto;
}
.edv__price { display: flex; align-items: baseline; gap: 5px; }
.edv__price strong { font-size: 20px; font-weight: 800; color: var(--e-koyu); }
.edv__price small { font-size: 11.5px; color: #8A93A3; }
.edv__price--ask { font-size: 13px; font-weight: 650; color: var(--e-gri); }

.edv__cta {
    padding: 10px 18px;
    border: 1.5px solid var(--e-mavi);
    border-radius: 10px;
    background: #fff;
    color: var(--e-mavi);
    font-size: 13.5px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background .16s, color .16s;
}
.edv__cta:hover { background: var(--e-mavi); color: #fff; }

.edv__note {
    max-width: 780px;
    margin: 26px auto 0;
    text-align: center;
    font-size: 12px;
    color: #8A93A3;
    line-height: 1.65;
}
.edv__note a { color: #5B6678; }

/* ============================================================
   Kırılım noktaları
   ============================================================ */

@media (max-width: 1024px) {
    .edv__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .esen, .edv { padding: 44px 0; }
    /* Telefonda satırda 2 döşeme — tek sütunda kare kartlar ekranı kaplayıp
       bölüm gereksiz uzuyordu. Genişlik yüzdeyle verilir ki 2'ye tam bölünsün. */
    .esen__grid { gap: 12px; max-width: 100%; }
    .esen__card { width: calc(50% - 6px); padding: 18px 14px; border-radius: 14px; }
    .esen__logo { max-height: 44px; }

    .edv__grid { grid-template-columns: 1fr; gap: 16px; }
    .edv__tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
    .edv__tabs::-webkit-scrollbar { display: none; }
    .edv__tab { flex: 0 0 auto; }
    .edv__media { aspect-ratio: 16 / 10; }
}

/* 2026-09-16 anasayfa denetimi: mobilde donanım kartları alt alta ~8 ekran boyu
   tutuyordu → yatay kaydırmalı şerit (kaydırma yakalamalı). Filtre [hidden] korunur. */
@media (max-width: 700px) {
    .edv__grid {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-auto-columns: 82%;
        gap: 14px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding: 4px 4px 14px;
        margin: 0 -4px;
    }
    .edv__grid > .edv__card { scroll-snap-align: start; }
    .edv__grid > .edv__card[hidden] { display: none; }
}

/* WebP <picture> sarmalayıcısı düzeni etkilemesin + yaklaşık TL fiyatı (2026-09-16) */
.edv__media-btn picture { display: contents; }
.edv__price-tl {
    display: block;
    font-style: normal;
    font-size: 12.5px;
    font-weight: 600;
    color: #5B6678;
    margin-top: 2px;
    white-space: nowrap;
}

/* ==== paket-kartlari.css ==== */
/* ============================================================
   ESTORIX — Paket kartları (.epk) ve tam karşılaştırma tablosu
   inc/pricing-packages.php ile birlikte çalışır.

   2026-09-24: vitrin ÜÇ karta indi. Izgara 6 sütun × span 2 olarak
   kaldı — 3 kart tam bir satır eder, nth-child(4)/(5) kuralları da
   boşa düşer. "Menü" ürünü kartların altında tek şerit, ek modüller
   ayrı bir ızgara.
   ============================================================ */

.epk { --epk-mavi: #2563eb; --epk-koyu: #0A1628; --epk-gri: #5B6678; --epk-ek: #7C3AED; }

/* ── Aylık / yıllık ── */
.epk__billing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto 30px;
    padding: 5px;
    background: #EEF1F5;
    border-radius: 999px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.epk__billing-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--epk-gri);
    font-size: 14.5px;
    font-weight: 650;
    font-family: inherit;
    cursor: pointer;
    transition: background .18s, color .18s;
}
.epk__billing-btn.is-active {
    background: #fff;
    color: var(--epk-koyu);
    box-shadow: 0 2px 8px rgba(10,22,40, .10);
}
.epk__billing-badge {
    padding: 3px 9px;
    border-radius: 999px;
    background: #CDEBDD;
    color: #0B7A55;
    font-size: 11.5px;
    font-weight: 700;
}

/* ── Kart ızgarası ──
   Masaüstü: 3 + 2. Beş eşit sütunda kart 220px'e düşüp özellik satırları
   iki satıra kırılıyordu; 3'lü düzende her kart ~330px ve rahat okunuyor. */
/* 6 sütunluk ızgarada her kart 2 sütun kaplar → satırda 3 kart.
   Son satırdaki iki kart 2. ve 4. sütundan başlayarak ORTALANIR.
   (Önce `margin-left:50%` denendi: kartı kaydırmak yerine sütun içinde
   yarıya indiriyordu — 5 kartlık ızgarada klasik tuzak.) */
.epk__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    max-width: 1120px;
    margin: 0 auto;
}
.epk__grid > .epk__card { grid-column: span 2; }
.epk__grid > .epk__card:nth-child(4) { grid-column: 2 / span 2; }
.epk__grid > .epk__card:nth-child(5) { grid-column: 4 / span 2; }

.epk__card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 22px 22px;
    background: #fff;
    border: 1.5px solid #DDE2EA;
    border-radius: 18px;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.epk__card:hover {
    border-color: #C3CAD6;
    box-shadow: 0 14px 34px rgba(10,22,40, .09);
    transform: translateY(-3px);
}
.epk__card.is-popular {
    border-color: var(--epk-mavi);
    border-width: 2px;
    box-shadow: 0 16px 40px rgba(37, 99, 235, .14);
}

.epk__tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: 999px;
    background: var(--epk-mavi);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
}

/* ── Başlık ── */
.epk__head { margin-bottom: 18px; }
.epk__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: var(--epk-akzent-bg, #EFF4FF);
    color: var(--epk-akzent, #2563eb);
    font-size: 17px;
}
.epk__name {
    font-size: 21px;
    font-weight: 800;
    color: var(--epk-koyu);
    margin: 0 0 6px;
    letter-spacing: -.015em;
}
.epk__for {
    margin: 0;
    font-size: 13px;
    color: var(--epk-gri);
    line-height: 1.5;
    min-height: 39px;
}

/* Paket başına vurgu rengi — beş kart ayırt edilebilir olsun */
.epk__card--menu      { --epk-akzent: #4F72B8; --epk-akzent-bg: #EFF4FF; }
.epk__card--esnaf     { --epk-akzent: #434D5E; --epk-akzent-bg: #EEF1F5; }
.epk__card--baslangic { --epk-akzent: #2563eb; --epk-akzent-bg: #EFF4FF; }
.epk__card--profesyonel { --epk-akzent: #0A1628; --epk-akzent-bg: #EEF1F5; }
.epk__card--kurumsal  { --epk-akzent: #8A7148; --epk-akzent-bg: #F4EFE6; }

/* ── Fiyat ── */
.epk__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}
.epk__amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--epk-koyu);
    letter-spacing: -.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.epk__unit { font-size: 15px; font-weight: 700; color: var(--epk-gri); }
.epk__unit small { font-size: 14px; font-weight: 600; }

/* Tek satır: dönem + KDV. Önce üç ayrı satırdı ve fiyat bloğu kalabalıktı. */
.epk__price-note {
    margin: 0 0 10px;
    font-size: 12.5px;
    color: var(--epk-gri);
    line-height: 1.5;
}
.epk__price-note strong { color: var(--epk-koyu); font-weight: 700; }

.epk__save {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 8px;
    background: #E7F6F0;
    color: #0B7A55;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}
.epk__save i { font-size: 10px; }
/* `hidden` özniteliği tek başına YETMEZ: sınıftaki display:inline-flex,
   tarayıcının [hidden]{display:none} kuralını özgüllükle eziyor. Aylık plana
   geçildiğinde "Yılda X TL tasarruf" rozeti bu yüzden ekranda kalıyordu. */
.epk__save[hidden] { display: none; }

/* ── Yapay zekâ rozeti ── */
.epk__ai {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 11px 13px;
    margin-bottom: 18px;
    border-radius: 11px;
    background: var(--epk-akzent-bg, #EFF4FF);
    color: var(--epk-akzent, #1D4ED8);
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.45;
}
.epk__ai i { margin-top: 2px; flex: 0 0 auto; }

/* ── Özellikler ── */
.epk__feat-wrap { flex: 1 1 auto; margin-bottom: 20px; }
.epk__feat-t {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #8A93A3;
}
.epk__feat-t--off { margin-top: 16px; padding-top: 14px; border-top: 1px dashed #DDE2EA; }

.epk__feats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.epk__feats li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #2C3647;
}
.epk__feats li i { flex: 0 0 auto; margin-top: 3px; font-size: 11.5px; }
.epk__feats li.is-on i { color: #0F9D6E; }
.epk__feats li.is-off { color: #8A93A3; }
.epk__feats li.is-off i { color: #C3CAD6; }
.epk__feats strong { color: var(--epk-koyu); font-weight: 700; }

/* Ek modül satırları: "yok" DEĞİL "isteğe bağlı". Griye/çarpıya benzemesi
   satışı öldürüyordu — mor artı ile ayrı bir kademe olarak okunur. */
.epk__feat-t--addon { margin-top: 16px; padding-top: 14px; border-top: 1px dashed #DDE2EA; color: var(--epk-ek); }
.epk__feats li.is-addon { color: #46325F; }
.epk__feats li.is-addon i { color: var(--epk-ek); }

/* ── Eylemler ── */
.epk__cta {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: auto;
}

.epk__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    border-radius: 11px;
    font-size: 14.5px;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background .16s, border-color .16s, color .16s;
}
.epk__btn--solid { background: var(--epk-akzent, var(--epk-mavi)); color: #fff; }
.epk__btn--solid:hover { filter: brightness(.92); color: #fff; }
.epk__btn--ghost { background: #fff; border-color: #DDE2EA; color: var(--epk-koyu); }
.epk__btn--ghost:hover { border-color: var(--epk-akzent, var(--epk-mavi)); color: var(--epk-akzent, var(--epk-mavi)); }

.epk__compare-link {
    display: block;
    margin-top: 2px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 650;
    color: var(--epk-gri);
    text-decoration: none;
}
.epk__compare-link:hover { color: var(--epk-akzent, var(--epk-mavi)); text-decoration: underline; }

.epk__footnote {
    max-width: 780px;
    margin: 26px auto 0;
    text-align: center;
    font-size: 12.5px;
    color: #8A93A3;
    line-height: 1.65;
}

/* ============================================================
   Tam karşılaştırma tablosu
   ============================================================ */

.epk__compare {
    max-width: 1120px;
    margin: 56px auto 0;
    background: #fff;
    border: 1px solid #DDE2EA;
    border-radius: 18px;
    overflow: hidden;
}
.epk__compare-head {
    padding: 26px 24px 20px;
    text-align: center;
    border-bottom: 1px solid #DDE2EA;
}
.epk__compare-head h3 {
    margin: 0 0 6px;
    font-size: clamp(20px, 2.6vw, 25px);
    font-weight: 800;
    color: var(--epk-koyu);
    letter-spacing: -.02em;
}
.epk__compare-head p { margin: 0; font-size: 14px; color: var(--epk-gri); }

/* Mobil paket seçici — masaüstünde gizli */
.epk__cmp-picker { display: none; }

.epk__cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.epk__cmp {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}
.epk__cmp thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #F7F8FA;
    padding: 14px 12px;
    text-align: center;
    border-bottom: 2px solid #DDE2EA;
    vertical-align: top;
}
.epk__cmp thead th.is-popular { background: #EFF4FF; }
.epk__cmp-name {
    display: block;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--epk-koyu);
}
.epk__cmp-price {
    display: block;
    margin-top: 3px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--epk-gri);
    white-space: nowrap;
}

.epk__cmp-feat {
    text-align: left !important;
    font-weight: 600;
    color: #2C3647;
    padding: 11px 16px;
    min-width: 250px;
}
.epk__cmp-feat small {
    display: block;
    font-size: 11.5px;
    font-weight: 500;
    color: #8A93A3;
    margin-top: 2px;
}

.epk__cmp tbody tr { border-bottom: 1px solid #EEF1F5; }
.epk__cmp tbody tr:hover { background: #fafbfc; }
.epk__cmp td {
    text-align: center;
    padding: 11px 12px;
    min-width: 108px;
}
.epk__cmp td.is-popular { background: rgba(239, 246, 255, .55); }

.epk__cmp-group th {
    background: #EEF1F5 !important;
    text-align: left !important;
    padding: 11px 16px !important;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--epk-koyu);
    text-transform: uppercase;
    letter-spacing: .04em;
    position: static !important;
}
.epk__cmp-group th i { color: var(--epk-mavi); margin-right: 7px; }

.epk__yes { color: #0F9D6E; font-size: 14px; }
.epk__no { color: #C3CAD6; font-size: 12px; }
.epk__val {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 7px;
    background: #EFF4FF;
    color: #1D4ED8;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.epk__val--addon { background: #F3EEFF; color: #6D28D9; }

/* Ekran okuyucu metni */
.epk__cmp .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.epk__cmp-foot {
    padding: 24px;
    text-align: center;
    background: #F7F8FA;
    border-top: 1px solid #DDE2EA;
}
.epk__cmp-foot p { margin: 0 0 14px; font-size: 14.5px; color: #2C3647; font-weight: 600; }
.epk__cmp-foot-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============================================================
   "Menü" şeridi — POS'suz QR ürünü
   Dördüncü kart olarak durduğunda ziyaretçi onu "en ucuz paket"
   sanıp POS beklentisiyle alıyordu; merdivenden çıkarıldı.
   ============================================================ */
.epk__menu-strip {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    max-width: 1120px;
    margin: 22px auto 0;
    padding: 18px 22px;
    border: 1px solid #DDE2EA;
    border-radius: 16px;
    background: linear-gradient(180deg, #FBFCFE 0%, #F4F7FB 100%);
}
.epk__menu-ico {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #E3E8F0;
    color: var(--epk-mavi);
    font-size: 19px;
}
.epk__menu-txt { flex: 1 1 320px; min-width: 0; }
.epk__menu-txt h4 { margin: 0 0 4px; font-size: 16px; font-weight: 750; color: var(--epk-koyu); }
.epk__menu-txt p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--epk-gri); }
.epk__menu-fiyat { flex: 0 0 auto; display: flex; flex-direction: column; gap: 2px; text-align: right; }
.epk__menu-amount { font-size: 24px; font-weight: 800; color: var(--epk-koyu); }
.epk__menu-amount small { font-size: 13px; font-weight: 600; color: var(--epk-gri); }
.epk__menu-note { font-size: 12px; color: var(--epk-gri); }
.epk__menu-strip .epk__btn { flex: 0 0 auto; }

/* ============================================================
   Ek modüller — her paketin üstüne eklenir
   ============================================================ */
.epk__ekler { max-width: 1120px; margin: 44px auto 0; }
.epk__ekler-head { text-align: center; margin-bottom: 22px; }
.epk__ekler-head h3 { margin: 0 0 8px; font-size: 24px; font-weight: 750; color: var(--epk-koyu); }
.epk__ekler-head p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--epk-gri);
}
.epk__ekler-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.epk__ek {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px;
    border: 1px solid #E3E8F0;
    border-radius: 14px;
    background: #fff;
}
.epk__ek-head { display: flex; flex-direction: column; gap: 5px; }
.epk__ek-grup {
    align-self: flex-start;
    padding: 3px 9px;
    border-radius: 999px;
    background: #F3EEFF;
    color: #6D28D9;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.epk__ek-head h4 { margin: 0; font-size: 16px; font-weight: 750; color: var(--epk-koyu); }
.epk__ek-desc { margin: 0; flex: 1 1 auto; font-size: 13px; line-height: 1.55; color: var(--epk-gri); }
.epk__ek-taban {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 7px 10px;
    border-radius: 9px;
    background: #F4F7FB;
    font-size: 12.5px;
    color: #46536A;
}
.epk__ek-taban i { color: var(--epk-ek); font-size: 11.5px; }
.epk__ek-taban strong { color: var(--epk-koyu); font-weight: 700; }
.epk__ek-fiyat { display: flex; flex-direction: column; gap: 2px; }
.epk__ek-amount { font-size: 21px; font-weight: 800; color: var(--epk-koyu); }
.epk__ek-amount small { font-size: 12.5px; font-weight: 600; color: var(--epk-gri); }
.epk__ek-yil { font-size: 12px; color: var(--epk-gri); }

/* ============================================================
   Kırılım noktaları
   ============================================================ */

/* Tablet: 2 sütun, son kart tam genişlik yerine ortalanır */
@media (max-width: 1024px) {
    /* 4 sütun × 2 = satırda 2 kart; 5. kart tek kalır ve ortalanır */
    .epk__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 720px; }
    .epk__grid > .epk__card:nth-child(4) { grid-column: span 2; }
    .epk__grid > .epk__card:nth-child(5) { grid-column: 2 / span 2; }
    /* 3 kart tablette 2+1 akar; tek kalan kart ortalanır. */
    .epk__grid > .epk__card:nth-child(3):last-child { grid-column: 2 / span 2; }
    .epk__cmp-feat { min-width: 200px; }
    .epk__ekler-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Telefon: kartlar tek sütun, tablo tek paket sütunu */
@media (max-width: 700px) {
    .epk__grid { grid-template-columns: 1fr; max-width: 460px; gap: 26px; }
    .epk__grid > .epk__card,
    .epk__grid > .epk__card:nth-child(4),
    .epk__grid > .epk__card:nth-child(5) { grid-column: 1 / -1; }
    .epk__grid > .epk__card:nth-child(3):last-child { grid-column: 1 / -1; }
    .epk__ekler-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .epk__menu-strip { flex-direction: column; align-items: flex-start; max-width: 460px; }
    .epk__menu-fiyat { text-align: left; }
    .epk__menu-strip .epk__btn { width: 100%; }
    .epk__card { padding: 24px 18px 20px; }
    .epk__for { min-height: 0; }
    .epk__amount { font-size: 36px; }
    .epk__compare { margin-top: 40px; border-radius: 14px; }
    .epk__compare-head { padding: 20px 16px 16px; }

    /* Seçici görünür olur: 5 sütunlu tabloyu yatay kaydırmak telefonda
       kullanılamaz durumdaydı, tek sütun gösterimi okunabilir. */
    .epk__cmp-picker {
        display: flex;
        gap: 7px;
        padding: 14px 14px 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .epk__cmp-picker::-webkit-scrollbar { display: none; }
    .epk__cmp-pick {
        flex: 0 0 auto;
        padding: 9px 15px;
        border: 1.5px solid #DDE2EA;
        border-radius: 999px;
        background: #fff;
        color: var(--epk-gri);
        font-size: 13px;
        font-weight: 650;
        font-family: inherit;
        white-space: nowrap;
        cursor: pointer;
    }
    .epk__cmp-pick.is-active {
        background: var(--epk-mavi);
        border-color: var(--epk-mavi);
        color: #fff;
    }

    .epk__cmp-scroll { overflow-x: visible; }
    .epk__cmp { font-size: 13px; }
    .epk__cmp [data-epk-col].is-hidden-mobile { display: none; }
    .epk__cmp-feat { min-width: 0; padding: 11px 14px; }
    .epk__cmp td { min-width: 0; padding: 11px 14px; }
    .epk__cmp thead th { padding: 12px 10px; }
    .epk__cmp-price { font-size: 11px; }
    .epk__cmp-foot-btns .epk__btn { width: 100%; }
}

/* Anasayfa: tam karşılaştırma varsayılan katlı (2026-09-16 denetimi — mobilde ~6.000 px'ti) */
.epk__compare-katla { margin-top: 28px; }
.epk__compare-katla > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid #d7deea;
  background: #fff;
  color: #0A1628;
  font-weight: 700;
  font-size: 15px;
}
.epk__compare-katla > summary::-webkit-details-marker { display: none; }
.epk__compare-katla > summary:hover { border-color: #2563EB; color: #2563EB; }
.epk__compare-katla > summary:focus-visible { outline: 2px solid #2563EB; outline-offset: 3px; }
.epk__compare-katla > summary i { transition: transform .2s ease; }
.epk__compare-katla[open] > summary i { transform: rotate(180deg); }
.epk__compare-katla[open] > .epk__compare { margin-top: 20px; }

/* ==== paket-bulucu.css ==== */
/* ============================================================
   ESTORIX — Paket bulucu aracı (.epb) + Detaylı bilgi formu (.eplf)
   index.php ve kampanyalar.php ortak kullanır.
   ============================================================ */

.epb {
    padding: 64px 0;
    background: #F7F8FA;
}

.epb__wrap {
    max-width: 860px;
    margin: 32px auto 0;
    background: #fff;
    border: 1px solid #DDE2EA;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(10,22,40, .08);
    padding: 28px 26px 30px;
}

/* ── Adım göstergesi ── */
.epb__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    flex-wrap: wrap;
}
.epb__step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #8A93A3;
    padding: 6px 14px 6px 6px;
    border-radius: 999px;
    background: #EEF1F5;
    transition: background .18s, color .18s;
}
.epb__step span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #DDE2EA;
    color: #5B6678;
    font-size: 12px;
    font-weight: 700;
}
.epb__step.is-active { background: #DBE6FE; color: #1d4ed8; }
.epb__step.is-active span { background: #2563eb; color: #fff; }
.epb__step.is-done { background: #CDEBDD; color: #0B7A55; }
.epb__step.is-done span { background: #0F9D6E; color: #fff; }

/* ── Paneller ── */
.epb__panel { display: none; }
.epb__panel.is-active { display: block; animation: epbIn .26s ease both; }

@keyframes epbIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .epb__panel.is-active { animation: none; }
}

.epb__q {
    font-size: clamp(19px, 2.4vw, 23px);
    font-weight: 700;
    color: #0A1628;
    text-align: center;
    margin: 0 0 6px;
}
.epb__hint {
    text-align: center;
    color: #5B6678;
    font-size: 13.5px;
    margin: 0 0 18px;
}
.epb__q + .epb__opts { margin-top: 20px; }

/* ── Seçenekler ── */
.epb__opts { display: grid; gap: 12px; }
.epb__opts--tile { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.epb__opts--row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.epb__opts--check { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.epb__opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 12px;
    border: 1.5px solid #DDE2EA;
    border-radius: 14px;
    background: #fff;
    color: #0A1628;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .16s, background .16s, transform .16s;
}
.epb__opt i { font-size: 22px; color: #2563eb; }
.epb__opt:hover { border-color: #2563eb; background: #F7F8FA; transform: translateY(-2px); }
.epb__opt.is-on { border-color: #2563eb; background: #EFF4FF; }

.epb__opt--pill {
    flex-direction: row;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
}

/* Çoklu seçim kutuları */
.epb__check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 15px;
    border: 1.5px solid #DDE2EA;
    border-radius: 14px;
    cursor: pointer;
    transition: border-color .16s, background .16s;
}
.epb__check:hover { border-color: #93B4FB; background: #F7F8FA; }
.epb__check input { position: absolute; opacity: 0; width: 0; height: 0; }
.epb__check-box {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border: 1.5px solid #C3CAD6;
    border-radius: 7px;
    display: grid;
    place-items: center;
    background: #fff;
    margin-top: 1px;
    transition: background .16s, border-color .16s;
}
.epb__check-box i { font-size: 11px; color: #fff; opacity: 0; transition: opacity .16s; }
.epb__check input:checked ~ .epb__check-box { background: #2563eb; border-color: #2563eb; }
.epb__check input:checked ~ .epb__check-box i { opacity: 1; }
.epb__check input:focus-visible ~ .epb__check-box { outline: 2px solid #2563eb; outline-offset: 2px; }
.epb__check:has(input:checked) { border-color: #2563eb; background: #EFF4FF; }

.epb__check-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.epb__check-ad { font-size: 14.5px; font-weight: 650; color: #0A1628; }
.epb__check-ad i { color: #2563eb; margin-right: 5px; font-size: 13px; }
.epb__check-ac { font-size: 12.5px; color: #5B6678; line-height: 1.45; }

/* ── Gezinme ── */
.epb__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.epb__back {
    background: none;
    border: none;
    color: #5B6678;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 4px;
    margin-top: 18px;
}
.epb__actions .epb__back { margin-top: 0; }
.epb__back:hover { color: #2563eb; }

.epb__go {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .16s, transform .16s;
}
.epb__go:hover { background: #1d4ed8; transform: translateY(-1px); }

/* ── Sonuç ── */
.epb__result { text-align: center; }
.epb__result-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 999px;
    background: #CDEBDD;
    color: #0B7A55;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .01em;
}
.epb__result-name {
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 800;
    color: #0A1628;
    margin: 12px 0 4px;
    letter-spacing: -.02em;
}
.epb__result-price {
    font-size: 15px;
    color: #434D5E;
}
.epb__result-price strong { color: #0A1628; font-size: 20px; font-weight: 800; }
.epb__result-price small { display: block; color: #8A93A3; font-size: 12px; margin-top: 3px; }

.epb__result-ai {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 14px auto 0;
    padding: 8px 16px;
    border-radius: 999px;
    background: #EFF4FF;
    color: #1D4ED8;
    font-size: 13px;
    font-weight: 650;
}

/* Ek modüller — paketten AYRI kutu. Aynı listede gösterince müşteri
   toplamı paketin fiyatı sanıyordu; ayırmak "neye ne ödüyorum"u çözer. */
.epb__result-ek {
    text-align: left;
    max-width: 520px;
    margin: 18px auto 0;
    padding: 14px 18px;
    background: #FAF7FF;
    border: 1px solid #E4DAF7;
    border-radius: 14px;
}
.epb__result-ek[hidden] { display: none; }
.epb__result-ek-t {
    font-size: 13px;
    font-weight: 700;
    color: #6D28D9;
    margin-bottom: 8px;
}
.epb__result-ek ul { margin: 0; padding-left: 18px; }
.epb__result-ek li {
    font-size: 13.5px;
    color: #46325F;
    line-height: 1.6;
    margin-bottom: 4px;
}
.epb__result-ek-top {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #E4DAF7;
    font-size: 13.5px;
    color: #434D5E;
}
.epb__result-ek-top strong { color: #0A1628; font-size: 17px; font-weight: 800; }
.epb__result-ek-top small { color: #8A93A3; font-size: 12px; }

.epb__result-why {
    text-align: left;
    max-width: 520px;
    margin: 22px auto 0;
    padding: 16px 18px;
    background: #F7F8FA;
    border: 1px solid #DDE2EA;
    border-radius: 14px;
}
.epb__result-why-t {
    font-size: 13px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 8px;
}
.epb__result-why ul { margin: 0; padding-left: 18px; }
.epb__result-why li {
    font-size: 13.5px;
    color: #434D5E;
    line-height: 1.6;
    margin-bottom: 5px;
}

.epb__result-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.epb__cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border: none;
    border-radius: 12px;
    background: #0F9D6E;
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15,157,110, .25);
    transition: background .16s, transform .16s;
}
.epb__cta-main:hover { background: #0B7A55; transform: translateY(-1px); }
.epb__cta-alt {
    background: none;
    border: 1.5px solid #DDE2EA;
    border-radius: 12px;
    padding: 14px 20px;
    color: #5B6678;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.epb__cta-alt:hover { border-color: #C3CAD6; color: #0A1628; }

.epb__result-note {
    max-width: 520px;
    margin: 18px auto 0;
    font-size: 12.5px;
    color: #8A93A3;
    line-height: 1.6;
}

/* ── Araç: mobil ── */
@media (max-width: 720px) {
    .epb { padding: 44px 0; }
    .epb__wrap { padding: 22px 16px 24px; border-radius: 18px; margin-top: 24px; }
    .epb__steps { gap: 6px; }
    .epb__step { font-size: 12px; padding: 5px 11px 5px 5px; }
    .epb__opts--tile { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .epb__opts--check { grid-template-columns: 1fr; }
    .epb__opt { padding: 16px 10px; font-size: 13.5px; }
    .epb__opt i { font-size: 19px; }
    .epb__actions { flex-direction: column-reverse; align-items: stretch; }
    .epb__go { justify-content: center; width: 100%; }
    .epb__cta-main, .epb__cta-alt { width: 100%; justify-content: center; }
}

/* ============================================================
   Detaylı bilgi formu (modal)
   ============================================================ */

.eplf {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 20px;
}
.eplf[hidden] { display: none; }

.eplf__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40, .62);
    backdrop-filter: blur(3px);
    border: none;
}

.eplf__panel {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(10,22,40, .32);
    padding: 30px 30px 26px;
    -webkit-overflow-scrolling: touch;
}

.eplf__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #EEF1F5;
    color: #434D5E;
    font-size: 15px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .16s;
}
.eplf__close:hover { background: #DDE2EA; }

.eplf__head { margin-bottom: 22px; padding-right: 34px; }
.eplf__head h2 {
    font-size: clamp(21px, 3vw, 26px);
    font-weight: 800;
    color: #0A1628;
    margin: 0 0 7px;
    letter-spacing: -.02em;
}
.eplf__head p { margin: 0; font-size: 14px; color: #5B6678; line-height: 1.6; }


/* ── Alanlar ── */
.eplf__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.eplf__f { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.eplf__f--full { grid-column: 1 / -1; }

.eplf__f label {
    font-size: 13px;
    font-weight: 650;
    color: #2C3647;
}
.eplf__f label span { color: #D14343; }

.eplf__f input,
.eplf__f select,
.eplf__f textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid #DDE2EA;
    border-radius: 10px;
    font-size: 14.5px;
    font-family: inherit;
    color: #0A1628;
    background: #fff;
    transition: border-color .16s, box-shadow .16s;
}
.eplf__f textarea { resize: vertical; min-height: 76px; }
.eplf__f input:focus,
.eplf__f select:focus,
.eplf__f textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}
.eplf__f input.is-err,
.eplf__f select.is-err {
    border-color: #D14343;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .10);
}
.eplf__hint { font-size: 12px; color: #8A93A3; }

/* ── KVKK ── */
.eplf__kvkk {
    margin-top: 18px;
    padding: 15px 16px;
    background: #F7F8FA;
    border: 1px solid #DDE2EA;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.eplf__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.8px;
    color: #434D5E;
    line-height: 1.55;
    cursor: pointer;
}
.eplf__consent input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: #2563eb;
    cursor: pointer;
}
.eplf__consent a { color: #2563eb; font-weight: 650; text-decoration: underline; }
.eplf__consent.is-err { color: #D14343; }

/* ── Mesaj / gönder ── */
.eplf__msg {
    margin-top: 14px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    background: #FCEBEB;
    color: #A63232;
    border: 1px solid #fecaca;
}

.eplf__submit {
    width: 100%;
    margin-top: 16px;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .16s;
}
.eplf__submit:hover:not(:disabled) { background: #1d4ed8; }
.eplf__submit:disabled { opacity: .65; cursor: not-allowed; }

.eplf__foot {
    margin: 11px 0 0;
    font-size: 12px;
    color: #8A93A3;
    text-align: center;
    line-height: 1.5;
}

/* ── Başarı ── */
.eplf__done { text-align: center; padding: 22px 6px 10px; }
.eplf__done-ico { font-size: 52px; color: #0F9D6E; margin-bottom: 12px; }
.eplf__done h3 { font-size: 22px; font-weight: 800; color: #0A1628; margin: 0 0 8px; }
.eplf__done p { margin: 0 auto 20px; max-width: 400px; font-size: 14px; color: #5B6678; line-height: 1.6; }
.eplf__done-btn {
    padding: 13px 32px;
    border: none;
    border-radius: 11px;
    background: #0A1628;
    color: #fff;
    font-size: 14.5px;
    font-weight: 650;
    cursor: pointer;
}

/* ── Form: mobil ── */
@media (max-width: 640px) {
    .eplf { padding: 0; place-items: stretch; }
    .eplf__panel {
        width: 100%;
        max-height: 100vh;
        min-height: 100vh;
        border-radius: 0;
        padding: 24px 18px 30px;
    }
    .eplf__grid { grid-template-columns: 1fr; }
    /* iOS 16px altı yazı tipinde alanı otomatik yakınlaştırır */
    .eplf__f input,
    .eplf__f select,
    .eplf__f textarea { font-size: 16px; }
}

/* ==== estorix-premium-motion.css ==== */
/* ===== Estorix Premium Motion — animasyon dili + erişilebilirlik ===== */
:root {
  --epm-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --epm-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --epm-duration: 0.45s;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --epm-duration: 0.01ms;
  }
  .epm-progress,
  .epm-trust-ticker,
  .epm-marquee-track,
  .epm-aurora,
  .epm-kinetic {
    animation: none !important;
  }
  .hero-reveal-row,
  .epm-reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Üst scroll ilerlemesi */
.epm-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10002;
  pointer-events: none;
  background: transparent;
}

.epm-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--odoo-primary);
  box-shadow: 0 0 12px rgba(37,99,235, 0.35);
  transition: width 0.12s linear;
}

/* Anchor kaydırma — yüzen topbar payı */
section[id] {
  scroll-margin-top: 88px;
}

/* Hero aurora + katman */
.hero--epm {
  position: relative;
  overflow: hidden;
}

.hero--epm .epm-aurora {
  position: absolute;
  inset: -40% -20%;
  pointer-events: none;
  z-index: 0;
  background:
    none;
  animation: epm-aurora-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes epm-aurora-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -2%) scale(1.03); }
}

.hero--epm > .container {
  position: relative;
  z-index: 1;
}

/* Hero başlık satır reveal */
.hero-title--premium {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.hero-reveal-row {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  animation: epm-hero-line-in var(--epm-duration) var(--epm-ease-out) forwards;
}

.hero-reveal-row:nth-child(1) { animation-delay: 0.08s; }
.hero-reveal-row:nth-child(2) { animation-delay: 0.22s; }

@keyframes epm-hero-line-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient metin canlı kayma */
/* Kontrast + Safari: arka plan konumu animasyonu yerine statik zengin gradient (composite uyarılarını azaltır) */
.gradient-text.gradient-text--live {
  background: var(--odoo-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}

/* Kinetik kelime */
.epm-kinetic {
  display: inline-block;
  min-width: 18ch;
  text-align: left;
  transition: opacity 0.35s var(--epm-ease);
}

.epm-kinetic.is-switching {
  opacity: 0.55;
}

/* Hero görsel tilt kapsayıcı */
.hero-image--tilt {
  perspective: 900px;
  transform-style: preserve-3d;
}

.hero-image--tilt picture {
  transition: transform 0.35s var(--epm-ease-out);
  will-change: transform;
}

/* Hafif shimmer (kart içi) */
.epm-shimmer-wrap {
  position: relative;
}

.epm-shimmer-wrap::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 65%
  );
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.35;
  transform: translateZ(0);
}

/* Güven bandı (ticker) */
.epm-trust-ticker {
  background: linear-gradient(90deg, #EEF1F5 0%, #fff 50%, #EEF1F5 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  padding: 12px 0;
}

.epm-trust-ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: epm-marquee-left 32s linear infinite;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.epm-trust-ticker-track span {
  white-space: nowrap;
}

@keyframes epm-marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Özellik kartı tilt + reveal */
.epm-tilt-card {
  transition: box-shadow 0.35s var(--epm-ease), transform 0.35s var(--epm-ease);
  transform-style: preserve-3d;
  will-change: transform;
}

.epm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--epm-ease-out), transform 0.65s var(--epm-ease-out);
}

.epm-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.features-grid .epm-tilt-card.epm-reveal:nth-child(1) { transition-delay: 0.04s; }
.features-grid .epm-tilt-card.epm-reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .epm-tilt-card.epm-reveal:nth-child(3) { transition-delay: 0.16s; }
.features-grid .epm-tilt-card.epm-reveal:nth-child(4) { transition-delay: 0.22s; }
.features-grid .epm-tilt-card.epm-reveal:nth-child(5) { transition-delay: 0.28s; }
.features-grid .epm-tilt-card.epm-reveal:nth-child(6) { transition-delay: 0.34s; }

/* Ekran görüntüsü / referans hover parlaması */
.epm-float-card {
  transition: transform 0.4s var(--epm-ease), box-shadow 0.4s var(--epm-ease);
}

.epm-float-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.epm-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  color: #B7791F;
  font-size: 18px;
  letter-spacing: 2px;
}

/* Logo bandı */
.epm-marquee-section {
  padding: 28px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.epm-marquee {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.epm-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: epm-marquee-left 40s linear infinite;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.epm-marquee-track span {
  white-space: nowrap;
  opacity: 0.85;
}

.epm-marquee-track span::before {
  content: "✦";
  margin-right: 10px;
  color: var(--odoo-primary);
  opacity: 0.5;
}

/* ROI ipucu */
.epm-roi-hint {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  margin-bottom: 28px;
  border-radius: var(--border-radius-lg);
  background: rgba(37,99,235, 0.06);
  border: 1px solid var(--border-color);
}

.epm-roi-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--odoo-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.epm-roi-hint p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Nav çizgisi */
.nav-links > a.epm-nav-link {
  position: relative;
}

.nav-links > a.epm-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--odoo-primary);
  transition: width 0.38s var(--epm-ease);
}

.nav-links > a.epm-nav-link:hover::after,
.nav-links > a.epm-nav-link:focus-visible::after {
  width: 100%;
}

/* Ripple için hazır katman */
.epm-ripple-wrap {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.epm-ripple-wrap > * {
  position: relative;
  z-index: 1;
}

.btn.epm-ripple-wrap::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.btn.epm-ripple-wrap.is-rippling::after {
  animation: epm-ripple 0.55s var(--epm-ease-out) forwards;
}

@keyframes epm-ripple {
  0% {
    opacity: 0.5;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

/* ==== estorix-vibe.css ==== */
/* =================================================================
   ESTORIX · homepage premium re-skin — APPLE-style light minimal
   Scope: body.estorix-vibe  ·  Loaded LAST, overrides base theme.
   Aesthetic: Apple.com — pure white / #F7F8FA, near-black huge type,
   grey secondary text, blue pill accents, generous whitespace,
   restrained fade-up motion. No neon, no 3D, no gradients-as-noise.
   ================================================================= */

body.estorix-vibe {
  --ink:        #0A1628;   /* Apple near-black */
  --ink-2:      #434D5E;   /* strong secondary */
  --grey:       #5B6678;   /* secondary text */
  --grey-2:     #8A93A3;   /* tertiary / captions */
  --line:       rgba(0,0,0,0.08);
  --line-2:     rgba(0,0,0,0.14);
  --surface:    #F7F8FA;   /* Apple light grey */
  --surface-2:  #ffffff;
  --blue:       #2563EB;
  --blue-dark:  #1D4ED8;
  --blue-press: #1E40AF;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 18px 48px rgba(0,0,0,0.12);
  --radius:     20px;
  --ease:       cubic-bezier(.28,.11,.32,1);

  background: #ffffff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

/* ---------- Typography primitives ---------- */
body.estorix-vibe .section-title,
body.estorix-vibe .feature-title,
body.estorix-vibe h2,
body.estorix-vibe h3 { color: var(--ink); letter-spacing: -0.025em; }

body.estorix-vibe .section-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.07;
}
body.estorix-vibe .section-subtitle {
  color: var(--grey);
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  font-weight: 400;
  line-height: 1.4;
  max-width: 40ch;
  margin-left: auto; margin-right: auto;
}
body.estorix-vibe .feature-description { color: var(--grey); }

/* emphasised word — subtle graphite, NOT rainbow */
body.estorix-vibe .gradient-text,
body.estorix-vibe .section-title .gradient-text,
body.estorix-vibe .hero-title .gradient-text,
body.estorix-vibe .cta-section .section-title .gradient-text {
  background: #0A1628 !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* kicker / overline */
body.estorix-vibe .estorix-section-kicker,
body.estorix-vibe .section-header > p[style] {
  color: var(--grey) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

/* =================================================================
   HEADER · KardoPos-style floating pill → full-width on scroll
   ================================================================= */
body.estorix-vibe header.estorix-topbar .estorix-topbar__shell {
  background: #ffffff !important;
  border-color: rgba(10,22,40, 0.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
body.estorix-vibe header.estorix-topbar.is-scrolled .estorix-topbar__shell {
  background: #F7F8FA !important;
  border-color: #DDE2EA !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
body.estorix-vibe .brand-text,
body.estorix-vibe .brand-x { color: var(--ink); -webkit-text-fill-color: var(--ink); }
body.estorix-vibe .epm-nav-link { color: var(--ink-2); font-weight: 400; }
body.estorix-vibe .epm-nav-link:hover,
body.estorix-vibe .epm-nav-link.is-active { color: var(--ink); }
body.estorix-vibe .mobile-menu-toggle span { background: var(--ink); }

/* =================================================================
   BUTTONS · Apple pills
   ================================================================= */
body.estorix-vibe .btn {
  border-radius: 980px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
body.estorix-vibe .btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  box-shadow: none;
}
body.estorix-vibe .btn-primary:hover { background: var(--blue-dark); transform: none; }
body.estorix-vibe .btn-primary:active { background: var(--blue-press); }

body.estorix-vibe .btn-secondary,
body.estorix-vibe .hero--corporate .btn-secondary {
  background: rgba(0,0,0,0.05) !important;
  color: var(--ink) !important;
  border: none !important;
  box-shadow: none !important;
}
body.estorix-vibe .btn-secondary:hover,
body.estorix-vibe .hero--corporate .btn-secondary:hover {
  background: rgba(0,0,0,0.09) !important;
  transform: none;
}

/* =================================================================
   HERO · centered, clean, product-led
   ================================================================= */
body.estorix-vibe .hero--corporate {
  background: #ffffff !important;
  min-height: auto;
  padding: 150px 0 70px;
  overflow: hidden;
}
body.estorix-vibe .hero--corporate .hero-bg-img { display: none !important; }
body.estorix-vibe .hero--corporate::before,
body.estorix-vibe .hero--corporate::after { display: none !important; }

body.estorix-vibe .hero--corporate .hero-layout {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
body.estorix-vibe .hero--corporate .hero-content {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.estorix-vibe .hero-eyebrow {
  background: var(--surface) !important;
  border: none !important;
  color: var(--ink-2) !important;
  border-radius: 980px;
  font-weight: 500;
  letter-spacing: 0;
}
body.estorix-vibe .hero-eyebrow i { color: var(--blue) !important; }

body.estorix-vibe .hero--corporate .hero-title,
body.estorix-vibe .hero-title {
  color: var(--ink) !important;
  font-size: clamp(2.6rem, 6.4vw, 5rem) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
  max-width: 16ch;
}
body.estorix-vibe .hero--corporate .hero-title span:not(.gradient-text) { color: var(--ink) !important; }

body.estorix-vibe .hero--corporate .hero-subtitle,
body.estorix-vibe .hero-subtitle {
  color: var(--grey) !important;
  font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
  font-weight: 400 !important;
  max-width: 34ch;
  margin-left: auto; margin-right: auto;
}
body.estorix-vibe .hero-subtitle strong { color: var(--ink) !important; font-weight: 600; }

body.estorix-vibe .hero-cta { justify-content: center; }

body.estorix-vibe .hero-trust-points { justify-content: center; color: var(--grey-2); }
body.estorix-vibe .hero-trust-points li { color: var(--grey); }
body.estorix-vibe .hero-trust-points i { color: var(--blue); }

/* big centered product shot below the copy — cropped to kill the
   empty top/bottom padding baked into the source PNG */
body.estorix-vibe:not(.is-corp) .hero--corporate .hero-image {
  margin: 48px auto 0;
  max-width: 560px;
  width: 100%;
  aspect-ratio: 5 / 6;
  animation: vibeHeroIn 1s var(--ease) both;
}
body.estorix-vibe:not(.is-corp) .hero--corporate .hero-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
body.estorix-vibe:not(.is-corp) .hero--corporate .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: drop-shadow(0 26px 50px rgba(0,0,0,0.16));
}
@keyframes vibeHeroIn { from { opacity: 0; transform: translateY(28px) scale(.985); } to { opacity: 1; transform: none; } }

/* =================================================================
   SECTION BACKGROUNDS · alternate white / #F7F8FA
   ================================================================= */
body.estorix-vibe .estorix-reasons-band,
body.estorix-vibe #platform,
body.estorix-vibe .estorix-module-grid-section,
body.estorix-vibe #testimonials,
body.estorix-vibe .seo-usecase-section,
body.estorix-vibe .download-section { background: #ffffff !important; }

body.estorix-vibe .estorix-trust-band,
body.estorix-vibe #problem-solution,
body.estorix-vibe .estorix-showcase,
body.estorix-vibe .estorix-split-band,
body.estorix-vibe #pricing-teaser,
body.estorix-vibe .seo-faq-section,
body.estorix-vibe .cta-section { background: var(--surface) !important; }

body.estorix-vibe .epm-trust-ticker,
body.estorix-vibe .epm-marquee-section { background: transparent !important; }
body.estorix-vibe .epm-trust-ticker-track span,
body.estorix-vibe .epm-marquee-track span { color: var(--grey-2) !important; }

/* trust band */
body.estorix-vibe .estorix-trust-band__label,
body.estorix-vibe .estorix-trust-band__count { color: var(--grey) !important; }
body.estorix-vibe .estorix-trust-band__count strong { color: var(--ink) !important; }
body.estorix-vibe .estorix-trust-band__name { color: var(--ink-2) !important; }

/* =================================================================
   CARDS · clean white, soft shadow, rounded
   ================================================================= */
body.estorix-vibe .feature-card,
body.estorix-vibe .estorix-module-tile,
body.estorix-vibe .estorix-split-card,
body.estorix-vibe .seo-usecase-card,
body.estorix-vibe .estorix-reasons-band__item,
body.estorix-vibe .seo-faq-item {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--card-shadow);
  color: var(--ink) !important;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
body.estorix-vibe .feature-card:hover,
body.estorix-vibe .estorix-module-tile:hover,
body.estorix-vibe .estorix-split-card:hover,
body.estorix-vibe .seo-usecase-card:hover,
body.estorix-vibe .estorix-reasons-band__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--line-2) !important;
}
/* on grey sections, cards stay white & pop via shadow (no border needed) */
body.estorix-vibe #problem-solution .feature-card { border-color: transparent !important; }

body.estorix-vibe .feature-title { color: var(--ink) !important; }
body.estorix-vibe .estorix-module-tile__title { color: var(--ink) !important; }
body.estorix-vibe .estorix-module-tile__desc,
body.estorix-vibe .estorix-split-card__text,
body.estorix-vibe .seo-usecase-card li { color: var(--grey) !important; }

/* reasons band */
body.estorix-vibe .estorix-reasons-band__title { color: var(--ink) !important; }
body.estorix-vibe .estorix-reasons-band__lead { color: var(--grey) !important; }
body.estorix-vibe .estorix-reasons-band__item-body { color: var(--ink) !important; }
body.estorix-vibe .estorix-reasons-band__item-body i { color: var(--blue) !important; }

/* module tile icon */
body.estorix-vibe .estorix-module-tile__icon {
  background: var(--surface) !important;
  border: none !important;
  color: var(--blue) !important;
}

/* split band */
body.estorix-vibe .estorix-split-card__label { color: var(--grey) !important; }
body.estorix-vibe .estorix-split-card__title { color: var(--ink) !important; }
body.estorix-vibe .estorix-split-card__cta { color: var(--blue) !important; }
body.estorix-vibe .estorix-split-card--accent {
  background: #F7F8FA !important;
  border-color: var(--line) !important;
}

/* platform pillar cards (keep light, refine) */
body.estorix-vibe .seo-eco-card h3 { color: var(--ink) !important; }
body.estorix-vibe .seo-eco-lead { color: var(--grey) !important; }
body.estorix-vibe .seo-eco-kicker { color: var(--grey) !important; }
body.estorix-vibe .seo-eco-list li { color: var(--ink-2) !important; }
body.estorix-vibe .seo-eco-cta { color: var(--blue) !important; }

/* usecase */
body.estorix-vibe .seo-usecase-card h3 { color: var(--ink) !important; }
body.estorix-vibe .seo-uc-icon { background: var(--surface) !important; border: none !important; color: var(--blue) !important; }
body.estorix-vibe .seo-uc-link { color: var(--blue) !important; }
body.estorix-vibe .seo-usecase-card em { color: var(--grey-2) !important; }

/* =================================================================
   SHOWCASE
   ================================================================= */
body.estorix-vibe .estorix-showcase__tab {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  color: var(--ink-2) !important;
  box-shadow: var(--card-shadow);
}
body.estorix-vibe .estorix-showcase__tab:hover { color: var(--ink) !important; }
body.estorix-vibe .estorix-showcase__tab.is-active {
  background: var(--ink) !important;
  color: #fff !important;
  border-color: var(--ink) !important;
}
body.estorix-vibe .estorix-showcase__info-title { color: var(--ink) !important; }
body.estorix-vibe .estorix-showcase__info-lead,
body.estorix-vibe .estorix-showcase__caption { color: var(--grey) !important; }
body.estorix-vibe .estorix-showcase__bullets li { color: var(--ink-2) !important; }
body.estorix-vibe .estorix-showcase__bullets i { color: var(--blue) !important; }
body.estorix-vibe .estorix-showcase__device {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12) !important;
}
body.estorix-vibe .estorix-showcase__thumb { background: #fff !important; border: 1px solid var(--line) !important; }
body.estorix-vibe .estorix-showcase__thumb.is-active { border-color: var(--blue) !important; }
body.estorix-vibe .estorix-showcase__zoom-hint { color: var(--grey-2) !important; }

/* =================================================================
   TESTIMONIALS
   ================================================================= */
body.estorix-vibe .estorix-rating-pill {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  box-shadow: var(--card-shadow);
}
body.estorix-vibe .estorix-rating-pill__text { color: var(--grey) !important; }
body.estorix-vibe .estorix-rating-star--on { color: #ff9f0a !important; }

body.estorix-vibe .estorix-ref-logos-block__title,
body.estorix-vibe .estorix-ref-disclaimer { color: var(--grey-2) !important; }
body.estorix-vibe .estorix-ref-disclaimer strong { color: var(--ink-2) !important; }

body.estorix-vibe #testimonials .estorix-support-promise {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--card-shadow);
}
body.estorix-vibe .estorix-support-promise__title { color: var(--ink) !important; }
body.estorix-vibe .estorix-support-promise__title i { color: var(--blue) !important; }
body.estorix-vibe .estorix-support-promise__lead { color: var(--grey) !important; }
body.estorix-vibe .estorix-support-promise__lead strong { color: var(--ink) !important; }

body.estorix-vibe #testimonials .estorix-composite-quotes {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
}
body.estorix-vibe .estorix-composite-quotes__heading { color: var(--ink) !important; }
body.estorix-vibe #testimonials blockquote.estorix-quote-card {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
}
body.estorix-vibe .estorix-quote-card__text { color: var(--ink-2) !important; }
body.estorix-vibe .estorix-quote-card__venue,
body.estorix-vibe .estorix-quote-card__role { color: var(--ink) !important; }
body.estorix-vibe .estorix-quote-card__star { color: #ff9f0a !important; }

/* =================================================================
   PRICING
   ================================================================= */
body.estorix-vibe .estorix-pricing-card {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--card-shadow);
}
body.estorix-vibe .estorix-pricing-card__name,
body.estorix-vibe .estorix-pricing-card__amount { color: var(--ink) !important; }
body.estorix-vibe .estorix-pricing-card__period,
body.estorix-vibe .estorix-pricing-card__annual,
body.estorix-vibe .estorix-pricing-card__features li { color: var(--grey) !important; }
body.estorix-vibe .estorix-pricing-card--popular {
  border-color: var(--blue) !important;
  box-shadow: 0 18px 48px rgba(37,99,235,0.16) !important;
}
body.estorix-vibe .estorix-pricing-card__tag { background: var(--blue) !important; color: #fff !important; }
body.estorix-vibe .estorix-pricing-preview-note { color: var(--grey-2) !important; }
body.estorix-vibe .estorix-pricing-preview-note a { color: var(--blue) !important; }

/* =================================================================
   FAQ
   ================================================================= */
body.estorix-vibe .seo-faq-question,
body.estorix-vibe .seo-faq-q-text { color: var(--ink) !important; }
body.estorix-vibe .seo-faq-answer,
body.estorix-vibe .seo-faq-answer p { color: var(--grey) !important; }
body.estorix-vibe .seo-faq-answer a { color: var(--blue) !important; }
body.estorix-vibe .seo-faq-icon { background: var(--surface) !important; color: var(--ink) !important; border: none !important; }

/* =================================================================
   DOWNLOAD
   ================================================================= */
body.estorix-vibe .estorix-download__windows,
body.estorix-vibe .estorix-download__card {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--card-shadow);
}
body.estorix-vibe .estorix-download__title { color: var(--ink) !important; }
body.estorix-vibe .estorix-download__desc,
body.estorix-vibe .estorix-download__soon { color: var(--grey) !important; }
body.estorix-vibe .estorix-download__icon { color: var(--ink) !important; }
body.estorix-vibe .estorix-download__version-tag { background: var(--surface) !important; color: var(--grey) !important; border: none !important; }
body.estorix-vibe .estorix-download__btn:not(.estorix-download__btn--outline) { background: var(--ink) !important; color: #fff !important; }
body.estorix-vibe .estorix-download__btn--outline { background: var(--surface) !important; color: var(--ink) !important; border: 1px solid var(--line-2) !important; }

/* =================================================================
   CTA · light, blue accent
   ================================================================= */
body.estorix-vibe .cta-section { border-top: 1px solid var(--line); }
body.estorix-vibe .cta-section .section-title { color: var(--ink) !important; }
body.estorix-vibe .cta-section .section-subtitle { color: var(--grey) !important; }
body.estorix-vibe .cta-section .btn-white { background: var(--blue) !important; color: #fff !important; }
body.estorix-vibe .cta-section .btn-white:hover { background: var(--blue-dark) !important; }
body.estorix-vibe .cta-section .btn-outline-white {
  background: rgba(0,0,0,0.05) !important;
  color: var(--ink) !important;
  border: none !important;
}
body.estorix-vibe .cta-section .btn-outline-white:hover { background: rgba(0,0,0,0.09) !important; }
body.estorix-vibe .cta-section p { color: var(--grey) !important; opacity: 1 !important; }
body.estorix-vibe .cta-section p a { color: var(--blue) !important; }

/* =================================================================
   SCROLL REVEAL · restrained fade-up (added by estorix-vibe.js)
   ================================================================= */
body.estorix-vibe .vibe-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
body.estorix-vibe .vibe-reveal.vibe-in { opacity: 1; transform: none; }

/* =================================================================
   VARIABLE REMAP — flips the inherited light-theme tokens to Apple
   values so SEO sub-pages (and shared components) restyle for free.
   ================================================================= */
body.estorix-vibe {
  --text-primary: var(--ink);
  --text-secondary: var(--grey);
  --text-muted: var(--grey-2);
  --bg-white: #ffffff;
  --bg-light: var(--surface);
  --bg-gray: var(--surface);
  --border-color: var(--line);
  --border-radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: var(--card-shadow);
  --shadow-lg: var(--card-shadow-hover);
  /* odoo accent family → monochrome + single blue */
  --odoo-primary: var(--ink);
  --odoo-primary-dark: #0A1220;
  --odoo-purple: var(--grey);
  --odoo-green: #0F9D6E;
  --odoo-teal: var(--blue);
  --odoo-orange: var(--grey);
  /* corporate family */
  --corp-ink: var(--ink);
  --corp-ink-muted: var(--grey);
  --corp-border: var(--line);
  --corp-accent: var(--blue);
}

/* =================================================================
   SEO SUB-PAGES — apply the same Apple language to their layout
   (seo-page-hero / seo-section / seo-content-block / stats / visual)
   ================================================================= */
body.estorix-vibe .seo-page-hero {
  background: #ffffff !important;
  padding: 150px 0 64px;
}
body.estorix-vibe .seo-page-hero::before,
body.estorix-vibe .seo-page-hero::after { display: none !important; }
body.estorix-vibe .seo-page-hero h1 {
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}
body.estorix-vibe .seo-page-hero p.seo-lead {
  color: var(--grey);
  font-size: clamp(1.12rem, 1.6vw, 1.4rem);
  line-height: 1.45;
}

body.estorix-vibe .seo-section { background: #ffffff !important; padding: 100px 0; }
body.estorix-vibe .seo-section-alt { background: var(--surface) !important; padding: 100px 0; }

body.estorix-vibe .seo-content-block h2 {
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
body.estorix-vibe .seo-content-block h3 { font-weight: 600; color: var(--ink); }
body.estorix-vibe .seo-content-block p,
body.estorix-vibe .seo-content-block ul li { color: var(--grey); }
body.estorix-vibe .seo-content-block ul li::before { color: var(--blue) !important; }

body.estorix-vibe .seo-content-visual {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--card-shadow) !important;
}
/* Gerçek ekran görselli blok kendi çerçevesini taşır — kart zemini olmaz */
body.estorix-vibe figure.seo-content-visual--shot {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
body.estorix-vibe .seo-content-visual::before { display: none !important; }
body.estorix-vibe .seo-content-visual i {
  background: #0A1628 !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body.estorix-vibe .seo-stats-strip {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--card-shadow) !important;
}
body.estorix-vibe .seo-stat-num {
  background: #0A1628 !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 600;
}
body.estorix-vibe .seo-stat-lbl { color: var(--grey-2); }

/* SEO faq open-state accent → blue (was purple) */
body.estorix-vibe .seo-faq-item[open] {
  border-color: var(--blue) !important;
  box-shadow: 0 10px 30px rgba(37,99,235,0.10) !important;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  body.estorix-vibe .seo-page-hero { padding-top: 120px; }
  body.estorix-vibe .hero--corporate { padding-top: 120px; }
  body.estorix-vibe .hero--corporate .hero-image { max-width: 360px; margin-top: 44px; }
  body.estorix-vibe .hero-subtitle,
  body.estorix-vibe .section-subtitle { max-width: none; }
}

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  body.estorix-vibe .hero--corporate .hero-image { animation: none; }
  body.estorix-vibe .vibe-reveal { transition: none; opacity: 1; transform: none; }
}

/* =================================================================
   CTA (orta bant) · koyu zemin — vibe katmanında başlık rengi
   .section-title kuralına yenilip okunmaz hale geliyordu
   ================================================================= */
body.estorix-vibe .cta-mid {
  background: #0A1628 !important;
}
body.estorix-vibe .cta-mid .section-title,
body.estorix-vibe .cta-mid .section-title .gradient-text {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}
body.estorix-vibe .cta-mid .section-subtitle { color: rgba(255, 255, 255, 0.85) !important; }
body.estorix-vibe .cta-mid .btn-white { background: #fff !important; color: var(--ink) !important; }
body.estorix-vibe .cta-mid .btn-outline-white {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
}

