/* ============================================================
   eKoruma - Page Styles
   İç sayfa stilleri
   ============================================================ */

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 212, 255, 0.2), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.15), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0, 255, 204, 0.1), transparent),
    linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

/* Social Icons Animation Container */
.social-icons-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  animation: floatIcon linear infinite;
  opacity: 0;
}

.floating-icon svg {
  stroke-width: 1.5;
  opacity: 0.6;
}

/* Icon Sizes */
.floating-icon.size-sm {
  width: 36px;
  height: 36px;
}

.floating-icon.size-sm svg {
  width: 18px;
  height: 18px;
}

.floating-icon.size-md {
  width: 48px;
  height: 48px;
}

.floating-icon.size-md svg {
  width: 24px;
  height: 24px;
}

.floating-icon.size-lg {
  width: 60px;
  height: 60px;
  border-radius: 16px;
}

.floating-icon.size-lg svg {
  width: 30px;
  height: 30px;
}

/* Icon Colors */
.floating-icon.instagram svg { stroke: #e4405f; }
.floating-icon.facebook svg { stroke: #1877f2; }
.floating-icon.twitter svg { stroke: #1da1f2; }
.floating-icon.linkedin svg { stroke: #0a66c2; }
.floating-icon.youtube svg { stroke: #ff0000; }
.floating-icon.reddit svg { stroke: #ff4500; }
.floating-icon.pinterest svg { stroke: #bd081c; }
.floating-icon.telegram svg { stroke: #0088cc; }
.floating-icon.whatsapp svg { stroke: #25d366; }
.floating-icon.globe svg { stroke: #00d4ff; }
.floating-icon.tiktok svg { stroke: #ff0050; }
.floating-icon.twitch svg { stroke: #9146ff; }
.floating-icon.discord svg { stroke: #5865f2; }
.floating-icon.github svg { stroke: #ffffff; }

/* Float Animation */
@keyframes floatIcon {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
    transform: translateY(80vh) rotate(20deg) scale(1);
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) rotate(-20deg) scale(0.8);
    opacity: 0;
  }
}

/* Horizontal drift variations */
.floating-icon.drift-left {
  animation-name: floatIconLeft;
}

.floating-icon.drift-right {
  animation-name: floatIconRight;
}

@keyframes floatIconLeft {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
    transform: translateY(80vh) translateX(-30px) rotate(15deg) scale(1);
  }
  50% {
    transform: translateY(40vh) translateX(-60px) rotate(-10deg) scale(0.9);
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) translateX(-100px) rotate(-25deg) scale(0.8);
    opacity: 0;
  }
}

@keyframes floatIconRight {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
    transform: translateY(80vh) translateX(30px) rotate(-15deg) scale(1);
  }
  50% {
    transform: translateY(40vh) translateX(60px) rotate(10deg) scale(0.9);
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(25deg) scale(0.8);
    opacity: 0;
  }
}

/* Glow effect on some icons */
.floating-icon.glow {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.floating-icon.instagram.glow { box-shadow: 0 0 20px rgba(228, 64, 95, 0.2); }
.floating-icon.facebook.glow { box-shadow: 0 0 20px rgba(24, 119, 242, 0.2); }
.floating-icon.twitter.glow { box-shadow: 0 0 20px rgba(29, 161, 242, 0.2); }
.floating-icon.youtube.glow { box-shadow: 0 0 20px rgba(255, 0, 0, 0.2); }
.floating-icon.whatsapp.glow { box-shadow: 0 0 20px rgba(37, 211, 102, 0.2); }

.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb i,
.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  stroke: var(--text-muted);
}

.breadcrumb span {
  color: var(--primary);
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
}

.page-hero-badge i,
.page-hero-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
}

.page-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--purple));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

.page-hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 35px;
}

.page-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTENT SECTION
   ============================================================ */
.content-section {
  padding: 100px 0;
  position: relative;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.content-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.content-text .section-badge {
  margin-bottom: 20px;
}

.content-text .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.highlight-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  margin-top: 30px;
}

.highlight-box > i,
.highlight-box > svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--primary);
  stroke: var(--primary);
}

.highlight-box p {
  margin: 0;
  font-size: 1rem;
}

.visual-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  position: sticky;
  top: 120px;
}

.visual-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: var(--glow-cyan);
}

.visual-icon i,
.visual-icon svg {
  width: 32px;
  height: 32px;
  color: white;
  stroke: white;
}

.visual-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li i,
.check-list li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  stroke: var(--accent);
}

/* ============================================================
   PLATFORMS SECTION
   ============================================================ */
.platforms-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.platform-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.platform-icon i,
.platform-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  stroke: var(--primary);
}

.platform-card:hover .platform-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.platform-card:hover .platform-icon i,
.platform-card:hover .platform-icon svg {
  color: white;
  stroke: white;
}

.platform-card span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

/* ============================================================
   PROCESS SECTION (Page)
   ============================================================ */
.process-section {
  padding: 100px 0;
}

.process-timeline {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--purple));
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: var(--bg-card);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.timeline-item:hover .timeline-number {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: white;
  box-shadow: var(--glow-cyan);
}

.timeline-content {
  flex: 1;
  padding: 20px 30px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
  border-color: var(--primary);
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   PORTAL SECTION
   ============================================================ */
.portal-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.portal-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.portal-content .section-badge {
  margin-bottom: 20px;
}

.portal-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.portal-content > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 35px;
}

.portal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.portal-feature {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: all 0.3s;
}

.portal-feature:hover {
  border-color: var(--primary);
}

.portal-feature .feature-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-feature .feature-icon i,
.portal-feature .feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  stroke: var(--primary);
}

.portal-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.portal-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Portal Mockup */
.portal-mockup {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.mockup-header {
  display: flex;
  gap: 8px;
  padding: 15px 20px;
  background: var(--bg-darker);
  border-bottom: 1px solid var(--glass-border);
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28ca42; }

.mockup-content {
  display: flex;
  min-height: 300px;
}

.mockup-sidebar {
  width: 60px;
  background: var(--bg-darker);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mockup-menu-item {
  height: 35px;
  background: var(--glass);
  border-radius: 8px;
}

.mockup-menu-item.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mockup-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mockup-card {
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: 10px;
}

.mockup-table {
  flex: 1;
  background: var(--bg-darker);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-row {
  height: 30px;
  background: var(--glass);
  border-radius: 6px;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.benefit-icon i,
.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.benefit-card:hover .benefit-icon i,
.benefit-card:hover .benefit-icon svg {
  stroke: white;
}

.benefit-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   APP STORES SECTION
   ============================================================ */
.app-stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.app-store-card {
  display: flex;
  gap: 30px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.app-store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.app-store-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-light);
}

.app-store-card:hover::before {
  opacity: 1;
}

.app-store-card.playstore::before {
  background: linear-gradient(90deg, #34a853, #4285f4, #ea4335, #fbbc05);
}

.app-store-card.appstore::before {
  background: linear-gradient(90deg, #007aff, #5856d6);
}

.app-store-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-store-icon i,
.app-store-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.app-store-card.playstore .app-store-icon {
  background: linear-gradient(135deg, #34a853, #4285f4);
}

.app-store-card.appstore .app-store-icon {
  background: linear-gradient(135deg, #007aff, #5856d6);
}

.app-store-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.app-store-content > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.app-store-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.app-store-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.app-store-content ul li i,
.app-store-content ul li svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

/* ============================================================
   RATING SECTION
   ============================================================ */
.rating-section {
  padding: 100px 0;
}

.rating-cards {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.rating-card {
  flex: 1;
  min-width: 200px;
  padding: 30px 25px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
}

.rating-card:hover {
  transform: translateY(-5px);
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 15px;
}

.rating-stars i,
.rating-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
}

.rating-card.critical .rating-stars { color: #ef4444; }
.rating-card.warning .rating-stars { color: #f97316; }
.rating-card.neutral .rating-stars { color: #eab308; }
.rating-card.positive .rating-stars { color: #84cc16; }
.rating-card.excellent .rating-stars { color: #22c55e; }

.rating-card.critical:hover { border-color: #ef4444; }
.rating-card.warning:hover { border-color: #f97316; }
.rating-card.neutral:hover { border-color: #eab308; }
.rating-card.positive:hover { border-color: #84cc16; }
.rating-card.excellent:hover { border-color: #22c55e; }

.rating-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.rating-card > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.rating-priority {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.rating-card.critical .rating-priority {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.rating-card.warning .rating-priority {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}

.rating-card.neutral .rating-priority {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.rating-card.positive .rating-priority {
  background: rgba(132, 204, 22, 0.15);
  color: #84cc16;
}

.rating-card.excellent .rating-priority {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/* ============================================================
   SERVICES DETAIL SECTION
   ============================================================ */
.services-detail-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-detail-card {
  display: flex;
  gap: 25px;
  padding: 35px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-icon i,
.service-detail-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.service-detail-icon.film {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-detail-icon.series {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.service-detail-icon.music {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.service-detail-icon.photo {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-detail-icon.content {
  background: linear-gradient(135deg, #10b981, #059669);
}

.service-detail-icon.book {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.service-detail-icon.youtube {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.service-detail-icon.dmca {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-detail-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-detail-content > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-features li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.service-features li i,
.service-features li svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
}

/* ============================================================
   SOCIAL PLATFORMS SECTION
   ============================================================ */
.social-platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.social-platform-card {
  padding: 35px 30px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.social-platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.social-platform-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-light);
}

.social-platform-card:hover::before {
  opacity: 1;
}

.social-platform-card.twitter::before {
  background: linear-gradient(90deg, #1da1f2, #14171a);
}

.social-platform-card.instagram::before {
  background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-platform-card.youtube::before {
  background: linear-gradient(90deg, #ff0000, #cc0000);
}

.social-platform-card.tiktok::before {
  background: linear-gradient(90deg, #00f2ea, #ff0050);
}

.social-platform-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.social-platform-icon i,
.social-platform-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.social-platform-card.twitter .social-platform-icon {
  background: linear-gradient(135deg, #1da1f2, #0d8ecf);
}

.social-platform-card.instagram .social-platform-icon {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

.social-platform-card.youtube .social-platform-icon {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-platform-card.tiktok .social-platform-icon {
  background: linear-gradient(135deg, #00f2ea, #ff0050);
}

.social-platform-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.social-platform-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-platform-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-platform-card ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-platform-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* ============================================================
   SHOWCASE SECTION
   ============================================================ */
.showcase-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.showcase-card {
  padding: 35px 30px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s;
}

.showcase-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-light);
}

.showcase-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.showcase-icon i,
.showcase-icon svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke: white;
}

.showcase-icon.danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.showcase-icon.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.showcase-icon.critical {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.showcase-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.showcase-card > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.showcase-example {
  padding: 20px;
  background: var(--bg-darker);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 0.9rem;
}

.showcase-example .example-label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase-example .example-text {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-family: 'Fira Code', monospace;
  margin-bottom: 8px;
}

.showcase-example .example-result {
  display: block;
  color: #ef4444;
  font-size: 0.85rem;
}

/* ============================================================
   FEATURES DETAIL SECTION
   ============================================================ */
.features-detail-section {
  padding: 100px 0;
}

.features-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-detail-card {
  padding: 40px 30px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
}

.feature-detail-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.feature-detail-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.feature-detail-icon i,
.feature-detail-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  stroke: var(--primary);
}

.feature-detail-card:hover .feature-detail-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-detail-card:hover .feature-detail-icon i,
.feature-detail-card:hover .feature-detail-icon svg {
  color: white;
  stroke: white;
}

.feature-detail-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-detail-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-cyan);
}

.stat-icon i,
.stat-icon svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   PAGE CTA
   ============================================================ */
.page-cta {
  padding: 100px 0;
  position: relative;
}

.page-cta .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
}

.page-cta .cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.page-cta .cta-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 35px;
}

.page-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .visual-card {
    position: static;
  }

  .portal-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .portal-visual {
    order: -1;
  }
}

@media (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .app-stores-grid {
    grid-template-columns: 1fr;
  }

  .rating-cards {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .page-hero-title {
    font-size: 2.5rem;
  }

  .page-hero-buttons {
    flex-direction: column;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-features {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 25px;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.2rem;
  }

  .timeline-content {
    padding: 15px 20px;
  }

  .page-cta .cta-content {
    padding: 40px 25px;
  }

  .page-cta .cta-buttons {
    flex-direction: column;
  }

  .features-detail-grid {
    grid-template-columns: 1fr;
  }

  .feature-detail-card {
    padding: 30px 25px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 30px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    padding: 30px 25px;
  }

  .social-platforms-grid {
    grid-template-columns: 1fr;
  }

  .social-platform-card {
    padding: 30px 25px;
  }

  .service-detail-card {
    flex-direction: column;
    padding: 30px 25px;
  }

  .service-detail-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .app-store-card {
    flex-direction: column;
    padding: 30px 25px;
  }

  .app-store-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .app-store-content ul {
    grid-template-columns: 1fr;
  }

  .rating-card {
    min-width: 160px;
    padding: 25px 20px;
  }

  .benefits-section {
    padding: 80px 0;
  }

  .benefit-card {
    flex-direction: column;
    padding: 25px 20px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .breadcrumb {
    flex-wrap: wrap;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .benefits-section {
    padding: 60px 0;
  }

  .benefits-grid {
    margin-top: 35px;
  }

  .benefit-card {
    padding: 20px 15px;
    gap: 15px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: var(--bg-dark);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card-icon i {
  width: 28px;
  height: 28px;
  color: white;
}

.contact-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}

.contact-form-content .section-badge {
  margin-bottom: 15px;
}

.contact-form-content .section-title {
  margin-bottom: 15px;
}

.contact-form-content > p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238892b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 45px;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox Styles */
.checkbox-group {
  flex-direction: row;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-label .checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--glass-border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.contact-form .btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-form .btn i {
  width: 20px;
  height: 20px;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.sidebar-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.sidebar-icon i {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.sidebar-card h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.sidebar-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.sidebar-link i {
  width: 18px;
  height: 18px;
}

.sidebar-link:hover {
  color: var(--accent);
}

/* Social Card */
.social-card .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-darker);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link i {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Map Section */
.map-section {
  padding: 0 0 100px;
  background: var(--bg-darker);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(100%) invert(92%) contrast(90%);
}

/* Contact Page Responsive */
@media (max-width: 1200px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-card {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 60px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 25px;
  }

  .contact-form-section {
    padding: 80px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    min-width: 100%;
  }

  .map-section {
    padding: 0 0 80px;
  }

  .map-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-info-section {
    padding: 50px 0;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card-icon {
    width: 50px;
    height: 50px;
  }

  .contact-card-icon i {
    width: 24px;
    height: 24px;
  }

  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  .social-card .social-links {
    flex-wrap: wrap;
  }

  .map-wrapper iframe {
    height: 280px;
  }
}

/* Company Info Section */
.company-info-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.company-info-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
}

.company-info-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.company-info-header i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.company-info-header h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.company-info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.info-value {
  font-size: 1rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .company-info-section {
    padding: 60px 0;
  }

  .company-info-card {
    padding: 30px 25px;
  }

  .company-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .company-info-card {
    padding: 25px 20px;
  }

  .company-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   LEGAL PAGES (Kullanım Şartları, Gizlilik Politikası, vb.)
   ============================================================ */

.page-hero-sm {
  min-height: 35vh;
  padding-bottom: 60px;
}

.legal-section {
  padding: 80px 0 100px;
  background: var(--bg-dark);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-intro {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
}

.legal-intro p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.legal-article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--glass-border);
}

.legal-article:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-article h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-article h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.legal-article h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.legal-article > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-article > p:last-child {
  margin-bottom: 0;
}

/* Definition List */
.definition-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.definition-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 20px 25px;
}

.definition-item strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.definition-item p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Legal Items (numbered) */
.legal-item {
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 2px solid var(--glass-border);
}

.legal-item:last-child {
  margin-bottom: 0;
}

.legal-item h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.legal-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.legal-item p + p {
  margin-top: 10px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.legal-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.legal-list li:last-child {
  margin-bottom: 0;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
  .page-hero-sm {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .legal-section {
    padding: 60px 0 80px;
  }

  .legal-intro {
    padding: 25px 20px;
  }

  .legal-article {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .legal-article h2 {
    font-size: 1.3rem;
  }

  .definition-item {
    padding: 18px 20px;
  }

  .legal-item {
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .legal-intro {
    padding: 20px 15px;
  }

  .legal-article h2 {
    font-size: 1.2rem;
  }

  .legal-article h3 {
    font-size: 1.1rem;
  }

  .definition-item {
    padding: 15px;
  }
}

/* Cookie Policy Specific Styles */
.cookie-purposes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.cookie-purpose-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cookie-purpose-item:hover {
  border-color: var(--primary);
}

.purpose-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.purpose-icon i {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.purpose-content h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.purpose-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Cookie Types */
.cookie-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.cookie-type-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.cookie-type-card:hover {
  border-color: var(--primary);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.cookie-type-header i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.cookie-type-header h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
}

.cookie-type-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.cookie-type-card p:last-child {
  margin-bottom: 0;
}

/* Cookie Links */
.cookie-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.cookie-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.cookie-link i {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--primary);
}

.cookie-link:hover {
  border-color: var(--primary);
  color: var(--text-primary);
  transform: translateX(5px);
}

/* Cookie Policy Responsive */
@media (max-width: 768px) {
  .cookie-purpose-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .purpose-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }

  .cookie-type-card {
    padding: 20px;
  }

  .cookie-link {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cookie-purpose-item {
    padding: 15px;
  }

  .cookie-type-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-type-card {
    padding: 15px;
  }

  .cookie-link {
    padding: 12px;
  }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

.faq-section {
  padding: 80px 0 100px;
  background: var(--bg-dark);
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 25px;
  cursor: pointer;
  gap: 20px;
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
}

.faq-question i {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 22px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* FAQ CTA */
.faq-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  padding: 35px 40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.faq-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-cta-content > i {
  width: 50px;
  height: 50px;
  color: var(--primary);
}

.faq-cta-content h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 0 0 5px 0;
}

.faq-cta-content p {
  color: var(--text-secondary);
  margin: 0;
}

.faq-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.faq-cta .btn i {
  width: 18px;
  height: 18px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0 80px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 20px 18px;
  }

  .faq-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }

  .faq-cta-content {
    flex-direction: column;
    gap: 15px;
  }

  .faq-cta-content > i {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 15px;
    gap: 15px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-question i {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .faq-answer p {
    padding: 0 15px 15px;
    font-size: 0.95rem;
  }

  .faq-cta {
    padding: 25px 20px;
  }
}

/* ============================================================
   404 ERROR PAGE
   ============================================================ */

.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.error-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(239, 68, 68, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0, 212, 255, 0.1), transparent),
    linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.error-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(2px 2px at 60% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 200px 200px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}

.error-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.error-code .digit {
  font-size: 8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: 0 0 60px rgba(0, 212, 255, 0.3);
}

.error-code .digit.zero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  -webkit-text-fill-color: initial;
}

.error-code .digit.zero i {
  width: 60px;
  height: 60px;
  color: #ef4444;
}

.error-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.error-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.error-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.error-actions .btn i {
  width: 20px;
  height: 20px;
}

.error-links {
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.error-links > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.quick-links a i {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.quick-links a:hover {
  border-color: var(--primary);
  color: var(--text-primary);
  transform: translateY(-3px);
}

/* 404 Page Responsive */
@media (max-width: 768px) {
  .error-section {
    padding: 120px 0 60px;
  }

  .error-code .digit {
    font-size: 5rem;
  }

  .error-code .digit.zero {
    width: 80px;
    height: 80px;
  }

  .error-code .digit.zero i {
    width: 40px;
    height: 40px;
  }

  .error-title {
    font-size: 1.6rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .quick-links {
    gap: 10px;
  }

  .quick-links a {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .error-code .digit {
    font-size: 4rem;
  }

  .error-code .digit.zero {
    width: 65px;
    height: 65px;
  }

  .error-code .digit.zero i {
    width: 32px;
    height: 32px;
  }

  .error-title {
    font-size: 1.4rem;
  }

  .quick-links a {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }
}
