/**
 * Payoneer Kesintisi - Main Website Styles
 * Landing page, legal pages, and UI mockups
 */

/* ============================================
   Base Reset & Typography
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--neyedi-font-primary);
  background: var(--neyedi-bg-primary);
  color: var(--neyedi-text-primary);
  line-height: var(--neyedi-leading-normal);
  min-height: 100vh;
}

a {
  color: var(--neyedi-turkish-red);
  text-decoration: none;
  transition: color var(--neyedi-transition-fast);
}

a:hover {
  text-decoration: underline;
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--neyedi-space-lg);
}

.section {
  padding: var(--neyedi-space-xxl) 0;
}

.section-alt {
  background: var(--neyedi-bg-secondary);
}

.section-dark {
  background: var(--neyedi-bg-dark);
  color: var(--neyedi-text-inverse);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neyedi-border);
  z-index: 1000;
  padding: var(--neyedi-space-md) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--neyedi-space-lg);
}

.nav-link {
  font-size: var(--neyedi-text-sm);
  font-weight: var(--neyedi-font-bold);
  color: var(--neyedi-text-secondary);
}

.nav-link:hover {
  color: var(--neyedi-turkish-red);
  text-decoration: none;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--neyedi-space-xs);
  padding: var(--neyedi-space-xs) var(--neyedi-space-sm);
  background: var(--neyedi-bg-secondary);
  border-radius: var(--neyedi-radius-full);
  font-size: var(--neyedi-text-sm);
  font-weight: var(--neyedi-font-bold);
  cursor: pointer;
  border: 1px solid var(--neyedi-border);
  transition: all var(--neyedi-transition-fast);
}

.lang-toggle:hover {
  border-color: var(--neyedi-turkish-red);
}

.lang-toggle .active {
  color: var(--neyedi-turkish-red);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  padding-top: 120px;
  padding-bottom: var(--neyedi-space-xxl);
  text-align: center;
}

.hero-logo {
  width: 280px;
  height: auto;
  margin-bottom: var(--neyedi-space-lg);
}

.hero-title {
  font-size: var(--neyedi-text-5xl);
  font-weight: var(--neyedi-font-bold);
  margin-bottom: var(--neyedi-space-md);
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--neyedi-turkish-red);
}

.hero-subtitle {
  font-size: var(--neyedi-text-xl);
  color: var(--neyedi-text-secondary);
  margin-bottom: var(--neyedi-space-sm);
}

.hero-subtitle-en {
  font-size: var(--neyedi-text-lg);
  color: var(--neyedi-text-muted);
  font-style: italic;
  margin-bottom: var(--neyedi-space-xl);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--neyedi-space-md);
  margin-bottom: var(--neyedi-space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--neyedi-space-sm);
  padding: var(--neyedi-space-sm) var(--neyedi-space-md);
  background: white;
  border-radius: var(--neyedi-radius-full);
  box-shadow: var(--neyedi-shadow-sm);
  font-size: var(--neyedi-text-sm);
  font-weight: var(--neyedi-font-bold);
}

.hero-badge-icon {
  width: 20px;
  height: 20px;
  color: var(--neyedi-turkish-red);
}

/* ============================================
   CTA Buttons
   ============================================ */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--neyedi-space-sm);
  padding: var(--neyedi-space-md) var(--neyedi-space-xl);
  background: var(--neyedi-turkish-red);
  color: white;
  font-size: var(--neyedi-text-lg);
  font-weight: var(--neyedi-font-bold);
  border-radius: var(--neyedi-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--neyedi-transition-normal);
  text-decoration: none;
}

.cta-btn:hover {
  background: var(--neyedi-turkish-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--neyedi-shadow-md);
  text-decoration: none;
  color: white;
}

.cta-btn-secondary {
  background: white;
  color: var(--neyedi-text-primary);
  border: 2px solid var(--neyedi-border);
}

.cta-btn-secondary:hover {
  background: var(--neyedi-bg-secondary);
  border-color: var(--neyedi-turkish-red);
  color: var(--neyedi-turkish-red);
}

.cta-chrome-icon {
  width: 24px;
  height: 24px;
}

/* ============================================
   Problem Section - Fee Breakdown
   ============================================ */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--neyedi-space-xxl);
  align-items: center;
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.problem-content h2 {
  font-size: var(--neyedi-text-4xl);
  margin-bottom: var(--neyedi-space-lg);
}

.problem-content p {
  font-size: var(--neyedi-text-lg);
  color: var(--neyedi-text-secondary);
  margin-bottom: var(--neyedi-space-md);
}

.fee-list {
  list-style: none;
  margin-top: var(--neyedi-space-lg);
}

.fee-list li {
  display: flex;
  align-items: center;
  gap: var(--neyedi-space-md);
  padding: var(--neyedi-space-md) 0;
  border-bottom: 1px solid var(--neyedi-border-light);
  font-size: var(--neyedi-text-lg);
}

.fee-list li:last-child {
  border-bottom: none;
}

.fee-percent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: var(--neyedi-space-xs) var(--neyedi-space-sm);
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: white;
  font-weight: var(--neyedi-font-bold);
  border-radius: var(--neyedi-radius-full);
  font-size: var(--neyedi-text-sm);
}

/* ============================================
   UI Mockup - Fee Badge
   ============================================ */

.mockup-container {
  background: white;
  border-radius: var(--neyedi-radius-lg);
  box-shadow: var(--neyedi-shadow-lg);
  overflow: hidden;
  border: 1px solid var(--neyedi-border);
}

.mockup-browser-bar {
  background: #f5f5f5;
  padding: var(--neyedi-space-sm) var(--neyedi-space-md);
  border-bottom: 1px solid var(--neyedi-border);
  display: flex;
  align-items: center;
  gap: var(--neyedi-space-sm);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot-red { background: #ff5f57; }
.mockup-dot-yellow { background: #febc2e; }
.mockup-dot-green { background: #28c840; }

.mockup-url {
  flex: 1;
  background: white;
  padding: var(--neyedi-space-xs) var(--neyedi-space-md);
  border-radius: var(--neyedi-radius-sm);
  font-size: var(--neyedi-text-sm);
  color: var(--neyedi-text-muted);
  font-family: var(--neyedi-font-mono);
}

.mockup-content {
  padding: var(--neyedi-space-xl);
}

/* Transaction Row Mockup */
.tx-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--neyedi-space-md);
  background: #fafafa;
  border-radius: var(--neyedi-radius-md);
  margin-bottom: var(--neyedi-space-md);
}

.tx-info {
  display: flex;
  align-items: center;
  gap: var(--neyedi-space-md);
}

.tx-icon {
  width: 40px;
  height: 40px;
  background: var(--neyedi-gradient-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.tx-details {
  display: flex;
  flex-direction: column;
}

.tx-name {
  font-weight: var(--neyedi-font-bold);
  font-size: var(--neyedi-text-base);
}

.tx-date {
  font-size: var(--neyedi-text-sm);
  color: var(--neyedi-text-muted);
}

.tx-amount-container {
  display: flex;
  align-items: center;
  gap: var(--neyedi-space-sm);
}

.tx-amount {
  font-size: var(--neyedi-text-xl);
  font-weight: var(--neyedi-font-bold);
  color: #28a745;
}

.tx-amount.negative {
  color: var(--neyedi-turkish-red);
}

/* Fee Badge (from extension) */
.fee-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(238, 90, 90, 0.3);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  animation: fee-badge-pulse 2s ease-in-out infinite;
}

.fee-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(238, 90, 90, 0.4);
}

@keyframes fee-badge-pulse {
  0%, 100% { box-shadow: 0 2px 6px rgba(238, 90, 90, 0.3); }
  50% { box-shadow: 0 2px 12px rgba(238, 90, 90, 0.5); }
}

/* ============================================
   Fee Breakdown Popup (from extension)
   ============================================ */

.fee-popup {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 360px;
  width: 100%;
  overflow: hidden;
}

.fee-popup-header {
  background: #fafafa;
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
}

.fee-popup-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.fee-popup-subtitle {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.fee-popup-list {
  padding: 8px 0;
}

.fee-popup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
}

.fee-popup-row:last-child {
  border-bottom: none;
}

.fee-popup-label {
  font-size: 14px;
  color: #666;
}

.fee-popup-value {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  font-variant-numeric: tabular-nums;
}

.fee-popup-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.fee-popup-total-label {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.fee-popup-total-value {
  font-size: 15px;
  font-weight: 600;
  color: #dc3545;
  font-variant-numeric: tabular-nums;
}

.fee-popup-footer {
  padding: 12px 20px 16px;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  border-top: 1px solid #eee;
}

/* ============================================
   Cenoa Alternative Section
   ============================================ */

.cenoa-section {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 50%, #0984e3 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cenoa-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cenoa-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--neyedi-space-xxl);
  align-items: center;
}

@media (max-width: 768px) {
  .cenoa-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.cenoa-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--neyedi-space-xs) var(--neyedi-space-md);
  border-radius: var(--neyedi-radius-full);
  font-size: var(--neyedi-text-sm);
  font-weight: var(--neyedi-font-bold);
  margin-bottom: var(--neyedi-space-md);
  border: 1px solid rgba(255,255,255,0.3);
}

.cenoa-title {
  font-size: var(--neyedi-text-4xl);
  font-weight: var(--neyedi-font-bold);
  margin-bottom: var(--neyedi-space-lg);
  line-height: 1.2;
}

.cenoa-desc {
  font-size: var(--neyedi-text-lg);
  opacity: 0.95;
  margin-bottom: var(--neyedi-space-lg);
  line-height: 1.7;
}

.cenoa-desc strong {
  color: #fff;
  background: rgba(0,0,0,0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.cenoa-comparison {
  display: flex;
  align-items: center;
  gap: var(--neyedi-space-md);
  margin-bottom: var(--neyedi-space-xl);
  flex-wrap: wrap;
}

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

.cenoa-comparison-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--neyedi-space-md) var(--neyedi-space-lg);
  border-radius: var(--neyedi-radius-md);
  min-width: 120px;
}

.cenoa-comparison-payoneer {
  background: rgba(220, 53, 69, 0.9);
}

.cenoa-comparison-cenoa {
  background: rgba(255, 255, 255, 0.95);
  color: #00b894;
}

.cenoa-comparison-label {
  font-size: var(--neyedi-text-sm);
  font-weight: var(--neyedi-font-bold);
  opacity: 0.9;
}

.cenoa-comparison-value {
  font-size: var(--neyedi-text-2xl);
  font-weight: var(--neyedi-font-bold);
}

.cenoa-comparison-vs {
  font-size: var(--neyedi-text-lg);
  font-weight: var(--neyedi-font-bold);
  opacity: 0.7;
}

.cenoa-code-box {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--neyedi-space-lg);
  border-radius: var(--neyedi-radius-md);
  margin-bottom: var(--neyedi-space-xl);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.cenoa-code-label {
  display: block;
  font-size: var(--neyedi-text-sm);
  opacity: 0.9;
  margin-bottom: var(--neyedi-space-sm);
}

.cenoa-code {
  font-size: var(--neyedi-text-3xl);
  font-weight: var(--neyedi-font-bold);
  font-family: var(--neyedi-font-mono);
  letter-spacing: 4px;
  background: white;
  color: #00b894;
  padding: var(--neyedi-space-sm) var(--neyedi-space-lg);
  border-radius: var(--neyedi-radius-sm);
  display: inline-block;
  margin-bottom: var(--neyedi-space-sm);
  user-select: all;
  cursor: pointer;
}

.cenoa-bonus {
  display: block;
  font-size: var(--neyedi-text-base);
  font-weight: var(--neyedi-font-bold);
  color: #ffeaa7;
  animation: cenoa-pulse 2s ease-in-out infinite;
}

@keyframes cenoa-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

.cenoa-cta {
  background: white;
  color: #00b894;
  font-size: var(--neyedi-text-lg);
  padding: var(--neyedi-space-md) var(--neyedi-space-xl);
}

.cenoa-cta:hover {
  background: #ffeaa7;
  color: #00b894;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cenoa-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.cenoa-cta:hover .cenoa-arrow {
  transform: translateX(4px);
}

.cenoa-qr-container {
  display: flex;
  justify-content: center;
}

.cenoa-qr-card {
  background: white;
  padding: var(--neyedi-space-xl);
  border-radius: var(--neyedi-radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  text-align: center;
  transform: rotate(2deg);
  transition: transform 0.3s;
}

.cenoa-qr-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.cenoa-qr-image {
  width: 200px;
  height: 200px;
  margin-bottom: var(--neyedi-space-md);
}

.cenoa-qr-text {
  font-size: var(--neyedi-text-sm);
  color: var(--neyedi-text-muted);
  font-weight: var(--neyedi-font-bold);
}

@media (max-width: 768px) {
  .cenoa-title {
    font-size: var(--neyedi-text-3xl);
  }
  
  .cenoa-qr-card {
    transform: none;
  }
  
  .cenoa-qr-image {
    width: 160px;
    height: 160px;
  }
}

/* ============================================
   Features Section
   ============================================ */

.features-title {
  text-align: center;
  font-size: var(--neyedi-text-4xl);
  margin-bottom: var(--neyedi-space-xxl);
}

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

.feature-card {
  background: white;
  padding: var(--neyedi-space-xl);
  border-radius: var(--neyedi-radius-lg);
  border: 1px solid var(--neyedi-border);
  transition: all var(--neyedi-transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neyedi-shadow-md);
  border-color: var(--neyedi-turkish-red);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--neyedi-turkish-red) 0%, #c41e3a 100%);
  border-radius: var(--neyedi-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--neyedi-space-md);
  color: white;
  font-size: 24px;
}

.feature-title {
  font-size: var(--neyedi-text-xl);
  font-weight: var(--neyedi-font-bold);
  margin-bottom: var(--neyedi-space-sm);
}

.feature-desc {
  color: var(--neyedi-text-secondary);
  font-size: var(--neyedi-text-base);
}

.feature-desc-en {
  color: var(--neyedi-text-muted);
  font-size: var(--neyedi-text-sm);
  font-style: italic;
  margin-top: var(--neyedi-space-xs);
}

/* ============================================
   Download Section
   ============================================ */

.download-section {
  text-align: center;
  padding: var(--neyedi-space-xxl) 0;
}

.download-title {
  font-size: var(--neyedi-text-4xl);
  margin-bottom: var(--neyedi-space-md);
  color: white;
}

.download-subtitle {
  font-size: var(--neyedi-text-xl);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--neyedi-space-xl);
}

.download-btn {
  background: white;
  color: var(--neyedi-turkish-red);
}

.download-btn:hover {
  background: var(--neyedi-bg-secondary);
  color: var(--neyedi-turkish-red-dark);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: var(--neyedi-space-xl) 0;
  border-top: 1px solid var(--neyedi-border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--neyedi-space-md);
}

.footer-copy {
  font-size: var(--neyedi-text-sm);
  color: var(--neyedi-text-muted);
}

.footer-links {
  display: flex;
  gap: var(--neyedi-space-lg);
}

.footer-link {
  font-size: var(--neyedi-text-sm);
  color: var(--neyedi-text-secondary);
}

.footer-link:hover {
  color: var(--neyedi-turkish-red);
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-page {
  padding-top: 100px;
  padding-bottom: var(--neyedi-space-xxl);
}

.legal-header {
  margin-bottom: var(--neyedi-space-xxl);
  padding-bottom: var(--neyedi-space-lg);
  border-bottom: 1px solid var(--neyedi-border);
}

.legal-title {
  font-size: var(--neyedi-text-4xl);
  margin-bottom: var(--neyedi-space-sm);
}

.legal-updated {
  font-size: var(--neyedi-text-sm);
  color: var(--neyedi-text-muted);
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: var(--neyedi-text-2xl);
  margin-top: var(--neyedi-space-xxl);
  margin-bottom: var(--neyedi-space-md);
  color: var(--neyedi-turkish-red);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: var(--neyedi-space-md);
  color: var(--neyedi-text-secondary);
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: var(--neyedi-space-md);
  padding-left: var(--neyedi-space-xl);
}

.legal-content li {
  margin-bottom: var(--neyedi-space-sm);
  color: var(--neyedi-text-secondary);
  line-height: 1.7;
}

.legal-bilingual {
  background: var(--neyedi-bg-secondary);
  padding: var(--neyedi-space-md);
  border-radius: var(--neyedi-radius-md);
  margin-bottom: var(--neyedi-space-md);
  border-left: 4px solid var(--neyedi-turkish-red);
}

.legal-bilingual .en {
  color: var(--neyedi-text-muted);
  font-style: italic;
  margin-top: var(--neyedi-space-sm);
  font-size: var(--neyedi-text-sm);
}

/* ============================================
   Contact Page
   ============================================ */

.contact-card {
  background: white;
  padding: var(--neyedi-space-xxl);
  border-radius: var(--neyedi-radius-lg);
  box-shadow: var(--neyedi-shadow-md);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--neyedi-turkish-red) 0%, #c41e3a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--neyedi-space-lg);
  color: white;
  font-size: 36px;
}

.contact-title {
  font-size: var(--neyedi-text-2xl);
  margin-bottom: var(--neyedi-space-md);
}

.contact-desc {
  color: var(--neyedi-text-secondary);
  margin-bottom: var(--neyedi-space-lg);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: var(--neyedi-space-sm);
  font-size: var(--neyedi-text-xl);
  font-weight: var(--neyedi-font-bold);
  color: var(--neyedi-turkish-red);
  padding: var(--neyedi-space-md) var(--neyedi-space-xl);
  background: var(--neyedi-bg-secondary);
  border-radius: var(--neyedi-radius-md);
  transition: all var(--neyedi-transition-fast);
}

.contact-email:hover {
  background: var(--neyedi-turkish-red);
  color: white;
  text-decoration: none;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--neyedi-text-3xl);
  }
  
  .hero-logo {
    width: 220px;
  }
  
  .nav-links {
    gap: var(--neyedi-space-sm);
  }
  
  .nav-link {
    display: none;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-title {
    font-size: var(--neyedi-text-3xl);
  }
}

/* ============================================
   Language Toggle Active States
   ============================================ */

[data-lang="tr"] [data-en],
[data-lang="en"] [data-tr] {
  display: none;
}

[data-lang="tr"] [data-tr],
[data-lang="en"] [data-en] {
  display: inline;
}

/* Block elements need different display */
[data-lang="tr"] p[data-tr],
[data-lang="en"] p[data-en],
[data-lang="tr"] div[data-tr],
[data-lang="en"] div[data-en],
[data-lang="tr"] h1[data-tr],
[data-lang="en"] h1[data-en],
[data-lang="tr"] h2[data-tr],
[data-lang="en"] h2[data-en] {
  display: block;
}

[data-lang="tr"] p[data-en],
[data-lang="en"] p[data-tr],
[data-lang="tr"] div[data-en],
[data-lang="en"] div[data-tr],
[data-lang="tr"] h1[data-en],
[data-lang="en"] h1[data-tr],
[data-lang="tr"] h2[data-en],
[data-lang="en"] h2[data-tr] {
  display: none;
}


