/* ============================
   SEPETFOKUS - STYLE.CSS
   Renkler: Kirmizi, Siyah, Beyaz, Gri, Hardal Sarisi
   ============================ */

:root {
  /* Renk Paleti */
  --red: #D62828;
  --red-dark: #B01E1E;
  --red-light: #FF4D4D;
  --red-glow: rgba(214, 40, 40, 0.3);
  --black: #1A1A1A;
  --black-soft: #2D2D2D;
  --black-card: #333333;
  --white: #FFFFFF;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --gray-bg: #F9FAFB;
  --mustard: #F97316;
  --mustard-dark: #EA580C;
  --mustard-light: #FB923C;
  --green: #16A34A;
  --green-light: #22C55E;
  --purple: #7C3AED;
  --pink: #EC4899;
  --orange: #F97316;
  
  /* Geometric */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-mustard: 0 4px 14px rgba(249, 115, 22, 0.3);
  --shadow-red: 0 4px 14px rgba(214, 40, 40, 0.3);
  
  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Transitions */
  --tr: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-light);
}
.btn-outline:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-block { display: flex; width: 100%; }

.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-light);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.4rem;
}
.logo-icon { font-size: 1.4rem; color: var(--red); }
.logo-text { color: var(--black); }
.logo-accent { color: var(--red); }

.nav-links { display: flex; gap: 32px; }
.nav-link {
  color: var(--gray);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--tr);
}
.nav-link:hover { color: var(--black); }

.nav-actions { display: flex; gap: 12px; align-items: center; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  width: 24px; height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--tr);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}
.nav-mobile a { color: var(--gray); font-weight: 500; }
.mobile-btn { margin-top: 8px; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  background: var(--gray-bg);
  overflow: hidden;
  padding: 60px 0 80px;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gray-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-light) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 185, 49, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.text-mustard { color: var(--mustard); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }

.hero-desc {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================
   HERO DASHBOARD PREVIEW
   ============================ */
.hero-visual { display: flex; justify-content: center; }

.dashboard-preview {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.dash-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--black-soft);
  gap: 12px;
}
.dash-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: var(--red); }
.dot-yellow { background: var(--mustard); }
.dot-green { background: var(--green); }
.dash-title {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 8px;
}

.dash-body { padding: 20px; }

.dash-row {
  margin-bottom: 12px;
  padding: 14px 16px;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  transition: var(--tr);
}
.dash-row:hover {
  background: var(--gray-light);
  transform: translateX(4px);
}

.dash-platform { display: flex; align-items: center; gap: 12px; }
.plat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}
.plat-icon svg { width: 100%; height: 100%; display: block; }
.plat-icon.uber { background: #000000; }
.plat-icon.yemeksepeti { background: #D62828; }
.plat-icon.migros { background: #F97316; }
.plat-icon.getir { background: #7C3AED; }
.plat-info { flex: 1; }
.plat-name { font-size: 0.9rem; font-weight: 600; color: var(--black); }
.plat-count { font-size: 0.8125rem; color: var(--gray); }
.plat-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.plat-status.active { background: rgba(22, 163, 74, 0.1); color: var(--green); }
.plat-status.pending { background: rgba(232, 185, 49, 0.15); color: var(--mustard-dark); }

/* ============================
   SECTION COMMON
   ============================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(214, 40, 40, 0.08);
  color: var(--red);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* ============================
   PLATFORMS
   ============================ */
.platforms {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.platform-card {
  text-align: center;
  padding: 40px 24px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  transition: var(--tr);
}
.platform-card:hover {
  border-color: var(--mustard);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.platform-logo {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
  color: var(--white);
  overflow: hidden;
}
.platform-logo svg { width: 100%; height: 100%; display: block; }
.uber-bg { background: #000000; }
.ys-bg { background: #D62828; }
.migros-bg { background: #F97316; }
.getir-bg { background: #7C3AED; }
.platform-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.platform-card > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.platform-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.feature-chip {
  padding: 4px 12px;
  background: var(--gray-bg);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================
   FEATURES
   ============================ */
.features {
  padding: 100px 24px;
  background: var(--gray-bg);
}
.features .section-title { color: var(--black); }
.features .section-tag {
  background: rgba(214, 40, 40, 0.08);
  color: var(--red);
}
.feature-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  transition: var(--tr);
  text-align: center;
}
.feature-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}
.feature-icon i { font-size: 2.25rem; }
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================
   PRICING
   ============================ */
.pricing {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-grid-single {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
}
.pricing-tagline {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 4px;
}
.pricing-card {
  padding: 40px 32px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-xl);
  transition: var(--tr);
  text-align: center;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-popular {
  position: relative;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.price-currency { font-size: 1.5rem; font-weight: 600; color: var(--gray); }
.price-amount { font-size: 3rem; font-weight: 900; color: var(--black); }
.price-period { font-size: 1rem; color: var(--gray); }
.pricing-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ============================
   CTA
   ============================ */
.cta {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -25%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(232, 185, 49, 0.08) 0%, transparent 60%);
}
.cta-container { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-desc { color: var(--gray-light); font-size: 1.125rem; margin-bottom: 32px; }

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--black); color: var(--gray); }
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 48px;
}
.footer-brand .logo-icon { color: var(--red); }
.footer-logo-text { color: var(--white) !important; }
.footer-logo-text .logo-accent { color: var(--red) !important; }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  max-width: 320px;
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: var(--tr);
}
.footer-col a:hover { color: var(--mustard); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
}

/* ============================
   RESPONSIVE - TABLET
   ============================ */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-container { gap: 48px; }
}

/* ============================
   RESPONSIVE - MOBILE
   ============================ */
@media (max-width: 768px) {
  .nav-container { height: 56px; padding: 0 16px; justify-content: center; }
  .logo { font-size: 1.2rem; }
  .logo-icon { font-size: 1.2rem; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }

  .hero { padding: 40px 0 60px; }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-badge { margin: 0 auto 20px; }
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .hero-visual { margin: 0 auto; }
  .dashboard-preview { max-width: 100%; }

  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 1.6rem; }

  .platforms { padding: 60px 20px; }
  .platform-grid { grid-template-columns: 1fr; gap: 16px; }
  .platform-card { padding: 28px 20px; }

  .features { padding: 60px 20px; }
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px 20px; }

  .pricing { padding: 60px 20px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { padding: 32px 24px; }
  .price-amount { font-size: 2.5rem; }

  .cta { padding: 60px 20px; }
  .cta-title { font-size: 1.8rem; }
  .cta-desc { font-size: 1rem; }
  .cta .btn { width: 100%; max-width: 300px; }

  .footer { display: none; }
}

/* ============================
   RESPONSIVE - SMALL MOBILE
   ============================ */
@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-desc { font-size: 0.95rem; }
  .section-title { font-size: 1.4rem; }
  .cta-title { font-size: 1.5rem; }

  .nav-container { padding: 0 14px; }
  .logo { font-size: 1.1rem; gap: 6px; }

  .hero { padding: 24px 0 40px; }
  .hero-container { padding: 0 16px; gap: 32px; }

  .hero-actions { gap: 10px; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  .dash-body { padding: 16px; }
  .dash-row { padding: 12px; }
  .plat-icon { width: 36px; height: 36px; font-size: 0.9rem; }
  .plat-name { font-size: 0.85rem; }
  .plat-count { font-size: 0.75rem; }
  .plat-status { padding: 3px 10px; font-size: 0.7rem; }

  .platforms { padding: 40px 14px; }
  .platform-card { padding: 24px 16px; }
  .platform-logo { width: 56px; height: 56px; font-size: 1.4rem; }
  .platform-card h3 { font-size: 1.1rem; }
  .platform-card > p { font-size: 0.875rem; }

  .features { padding: 40px 14px; }
  .feature-card { padding: 20px 16px; }
  .feature-icon i { font-size: 1.75rem; }
  .feature-card h3 { font-size: 1rem; }
  .feature-card p { font-size: 0.875rem; }

  .pricing { padding: 40px 14px; }
  .pricing-card { padding: 28px 18px; }
  .price-amount { font-size: 2.25rem; }
  .pricing-features li { font-size: 0.875rem; }

  .footer-links { grid-template-columns: 1fr; gap: 16px; }
  .footer-bottom { font-size: 0.8rem; }
}

/* ============================
   RESPONSIVE - EXTRA SMALL
   ============================ */
@media (max-width: 360px) {
  .hero-title { font-size: 1.4rem; }
  .section-title { font-size: 1.3rem; }
  .logo { font-size: 1rem; }
  .logo-icon { font-size: 1rem; }
  .dash-platform { gap: 8px; }
  .plat-info { min-width: 0; }
  .plat-name { font-size: 0.8rem; }
  .plat-count { font-size: 0.7rem; }
}