/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent-dark: #c73652;
  --white: #ffffff;
  --light: #f8f9fa;
  --gray: #6c757d;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(26,26,46,0.10);
  --radius: 12px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--primary);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* ===== SVG ICONS ===== */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-lg { width: 2.4rem; height: 2.4rem; }
.icon-xl { width: 3rem; height: 3rem; }

.step-num svg,
.product-icon svg { width: 100%; height: 100%; }

.product-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  width: 52px;
  height: 52px;
  background: rgba(233,69,96,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--accent);
}

.product-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accent);
  stroke: var(--accent);
}

/* inline SVG icon base */
.icon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}

/* product-icon içindeki SVG'ler tam boyut */
.product-icon .icon {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

nav { display: flex; gap: 28px; }

nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 60%, #0f3460 100%);
  color: var(--white);
  padding: 90px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.hero-bg.loaded { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.72);
  z-index: 1;
}

.hero > *:not(.hero-bg):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 60% 40%, rgba(233,69,96,0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(233,69,96,0.15);
  border: 1px solid rgba(233,69,96,0.4);
  color: #ff7a93;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233,69,96,0.4);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,69,96,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats {
  background: var(--white);
  padding: 48px 20px;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 6px;
}

/* ===== SECTIONS ===== */
section { padding: 72px 20px; }

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header { margin-bottom: 48px; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s;
}

.step-card:hover { transform: translateY(-4px); }

.step-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.92rem; color: var(--gray); }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.25s;
}

.product-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.product-card:hover::before { transform: scaleY(1); }

.product-icon { font-size: 2.2rem; margin-bottom: 14px; }
.product-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.product-card p { font-size: 0.9rem; color: var(--gray); }

/* ===== CITIES ===== */
.cities { background: var(--light); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.city-link {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
  color: var(--primary);
}

.city-link:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #0f3460);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.cta-section .section-title { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.75); margin: 0 auto 36px; max-width: 520px; }

/* ===== IL HERO ===== */
.il-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 60%, #0f3460 100%);
  color: var(--white);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.il-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.il-hero .hero-bg.loaded { opacity: 1; }

.il-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.72);
  z-index: 1;
}

.il-hero > *:not(.hero-bg):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}

.il-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.il-hero h1 em { color: var(--accent); font-style: normal; }
.il-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto 28px; }

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== IL CONTENT ===== */
.il-content { padding: 60px 20px; }

.il-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.il-text h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; margin-top: 32px; }
.il-text h2:first-child { margin-top: 0; }
.il-text p { color: #444; line-height: 1.8; margin-bottom: 14px; }
.il-text ul { padding-left: 20px; color: #444; }
.il-text ul li { margin-bottom: 8px; line-height: 1.7; }

.il-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.sidebar-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }

.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.sidebar-features { list-style: none; }
.sidebar-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: #444;
}
.sidebar-features li:last-child { border-bottom: none; }
.sidebar-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ===== FAQ ===== */
.faq { background: var(--light); }

.faq-list { max-width: 760px; }

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  transition: background 0.2s;
}

.faq-q:hover { background: var(--light); }

.faq-q .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--accent);
}

.faq-item.open .faq-q .arrow { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 56px 20px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

footer h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-bubble {
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: fadeInUp 0.5s ease 1s both;
  white-space: nowrap;
}

.wa-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulse 2.5s infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  animation: none;
}

.wa-btn svg { width: 32px; height: 32px; fill: white; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary); padding: 20px; gap: 16px; }
  nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .il-content-grid { grid-template-columns: 1fr; }
  .il-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .wa-float { bottom: 16px; right: 16px; }
}

/* ===== PORTFOLIO GALLERY ===== */
.gallery-section { background: var(--light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  background: #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.gallery-item:hover .overlay { opacity: 1; }

.overlay-text {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lightbox-img {
  max-height: 75vh;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  display: flex;
  gap: 12px;
}

.lightbox-nav button {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.lightbox-nav button:hover { background: rgba(255,255,255,0.28); }

.lightbox-cta {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.lightbox-cta:hover { background: var(--accent-dark); }

/* ===== MINI GALLERY (il/ilçe sayfaları) ===== */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 32px 0;
}

.mini-gallery .gallery-item { aspect-ratio: 16/10; }

@media (max-width: 768px) {
  .mini-gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 480px) {
  .mini-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ILCE HERO (siyah zemin) ===== */
.ilce-hero {
  background: #0a0a0a;
  color: var(--white);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ilce-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.ilce-hero .hero-bg.loaded { opacity: 1; }

.ilce-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.74);
  z-index: 1;
}

.ilce-hero > *:not(.hero-bg):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}

.ilce-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.ilce-hero h1 em { color: var(--accent); font-style: normal; }
.ilce-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 600px; margin: 0 auto 28px; }

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,69,96,0.15);
  border: 1px solid rgba(233,69,96,0.4);
  color: #ff8fa3;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* ===== PRICING CARDS ===== */
.pricing-section { padding: 64px 20px; background: var(--light); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  align-items: center;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.pricing-card.featured {
  background: #111;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-3px);
}

.pricing-img {
  width: 120px;
  height: 76px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.pricing-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}

.pricing-sub {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-sub { color: rgba(255,255,255,0.5); }

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  margin-bottom: 16px;
}

.pricing-amount {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.pricing-currency {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.pricing-kdv {
  font-size: 0.72rem;
  color: var(--gray);
  margin-bottom: 6px;
  margin-left: 2px;
}

.pricing-card.featured .pricing-kdv { color: rgba(255,255,255,0.45); }

.pricing-features {
  list-style: none;
  margin-bottom: 18px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(99,91,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #635bff;
}

.pricing-card.featured .pricing-check {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.pricing-check svg { width: 9px; height: 9px; }

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  background: #635bff;
  color: #fff;
}

.pricing-btn:hover {
  background: #4f46e5;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-3px); }
}

/* ===== PRICE TABLE ===== */
.price-table-wrap { overflow-x: auto; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.price-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.price-table th:first-child { text-align: left; }

.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.price-table td:first-child { font-size: 0.88rem; }

.price-cell { text-align: center; font-weight: 600; color: var(--primary); }

.featured-col { background: rgba(233,69,96,0.06); }
.featured-price { color: var(--accent) !important; font-size: 1rem !important; }

.price-table tbody tr:hover { background: var(--light); }

.price-note {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}

/* Fiyat sayfası içerik bölümü */
.fiyat-content h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; }
.fiyat-content h2:first-child { margin-top: 0; }
.fiyat-content p { color: #444; line-height: 1.8; margin-bottom: 14px; }
.fiyat-content ul { padding-left: 20px; color: #444; }
.fiyat-content ul li { margin-bottom: 8px; line-height: 1.7; }

/* ===== DİL GEÇİŞ BUTONU ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
}

.lang-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.lang-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
