/* ===== ODOO-INSPIRED DESIGN SYSTEM ===== */
:root {
  --odoo-primary: #714B67;
  --odoo-primary-dark: #5a3a52;
  --odoo-purple: #875A7B;
  --odoo-teal: #17A2B8;
  --odoo-orange: #F97316;
  --odoo-green: #28A745;
  
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-gray: #F1F1F1;
  --bg-dark: #212529;
  
  --text-primary: #1a1d21;
  --text-secondary: #3d4752;
  --text-muted: #5c6570;
  
  --border-color: #E9ECEF;
  --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: 100vw;
}

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: 100vw;
  -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%;
}

/* ===== HEADER ===== */
header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  width: 100%;
  left: 0;
  right: 0;
}

/* ===== APP STORE BANNER ===== */
.app-store-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  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 {
  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 {
    top: 88px;
  }
}


.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.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: #212529;
  font-weight: 700;
}

.brand-x {
  color: #3b82f6;
  font-weight: 700;
  margin-left: -0.1em;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
}

.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: 1000;
  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);
}

.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;
}

/* 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(15, 23, 42, 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;
  inset: 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;
  inset: 0;
  background: rgba(15, 23, 42, 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(15, 23, 42, 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(15, 23, 42, 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(15, 23, 42, 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(15, 23, 42, 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(15, 23, 42, 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(15, 23, 42, 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: 100px 0 100px;
  margin-top: 70px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  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: linear-gradient(135deg, var(--odoo-primary) 0%, var(--odoo-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-family: 'Caveat Brush', 'Caveat', cursive;
}

.gradient-text {
  background: linear-gradient(135deg, var(--odoo-primary) 0%, var(--odoo-purple) 100%);
  -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(113, 75, 103, 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: linear-gradient(135deg, var(--odoo-primary) 0%, var(--odoo-purple) 100%);
  -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: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  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(113, 75, 103, 0.35);
  box-shadow: 0 12px 36px rgba(113, 75, 103, 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: linear-gradient(135deg, var(--odoo-primary, #714b67), #9b6a8c);
  color: #fff;
  box-shadow: 0 4px 14px rgba(113, 75, 103, 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: #0d9488;
}

.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(113, 75, 103, 0.45);
  background: linear-gradient(180deg, rgba(113, 75, 103, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
  font-weight: 600;
}

/* ===== WIDE SCREENS SECTION ===== */
.wide-screens-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.wide-screens-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(113, 75, 103, 0.2), transparent);
}

.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(113, 75, 103, 0.15);
}

.wide-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--odoo-primary), var(--odoo-purple));
  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: #fef2f2;
}

.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: #fafafa;
}

.pricing-check {
  color: #16a34a;
}

.pricing-x {
  color: #dc2626;
}

.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: #f3f4f6;
  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(113, 75, 103, 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: linear-gradient(135deg, var(--odoo-primary) 0%, var(--odoo-purple) 100%);
  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: linear-gradient(135deg, var(--odoo-primary) 0%, var(--odoo-purple) 100%);
  color: white;
  text-align: center;
}

.cta-section .section-title {
  color: white;
  margin-bottom: 24px;
}

.cta-section .section-title .gradient-text {
  color: #000000 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #000000 !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-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;
}

/* ===== 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: linear-gradient(180deg, #ffffff 0%, #f8f4ff 50%, #f0ebf8 100%);
  position: relative;
  overflow: visible !important;
}

.deep-features::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(113,75,103,0.06) 0%, transparent 70%);
  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: radial-gradient(circle, rgba(23,162,184,0.05) 0%, transparent 70%);
  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(113,75,103,0.15); }
  50% { box-shadow: 0 0 0 12px rgba(113,75,103,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(113,75,103,0.15); }
  50% { border-color: rgba(113,75,103,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: linear-gradient(90deg, transparent, var(--odoo-primary), transparent);
  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(113,75,103,0.12);
  border-color: var(--odoo-primary);
}

.df-stat-number {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--odoo-primary), var(--odoo-purple));
  -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(113,75,103,0.06);
  color: var(--odoo-primary);
}

.df-tab.active {
  background: linear-gradient(135deg, var(--odoo-primary), var(--odoo-purple));
  color: white;
  box-shadow: 0 4px 15px rgba(113,75,103,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(113,75,103,0.1); color: var(--odoo-primary); }
.df-badge-teal { background: rgba(23,162,184,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(40,167,69,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(113,75,103,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(113,75,103,0.12); color: var(--odoo-primary); }
.df-check-teal { background: rgba(23,162,184,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(40,167,69,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: linear-gradient(90deg, var(--odoo-primary), var(--odoo-purple)); }
.df-visual-teal::before { background: linear-gradient(90deg, var(--odoo-teal), #20c997); }
.df-visual-orange::before { background: linear-gradient(90deg, var(--odoo-orange), #ef4444); }
.df-visual-green::before { background: linear-gradient(90deg, var(--odoo-green), #06b6d4); }

.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: linear-gradient(135deg, var(--odoo-primary), var(--odoo-purple)); }
.df-icon-teal { background: linear-gradient(135deg, var(--odoo-teal), #20c997); }
.df-icon-orange { background: linear-gradient(135deg, var(--odoo-orange), #ef4444); }
.df-icon-green { background: linear-gradient(135deg, var(--odoo-green), #06b6d4); }

.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(113,75,103,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: linear-gradient(135deg, var(--odoo-primary) 0%, var(--odoo-purple) 100%);
  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: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f0f0f0 100%);
  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: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  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;
  }
}
