:root {
  --bg-color: #0f172a; /* Slate 900 */
  --card-bg: rgba(30, 41, 59, 0.7); /* Slate 800 with opacity */
  --text-main: #f8fafc; /* Slate 50 */
  --text-muted: #cbd5e1; /* Slate 300 */
  --accent-color: #d4af37; /* Gold / Premium */
  --accent-hover: #fcd34d;
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(16px);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 40%),
                    radial-gradient(circle at bottom left, rgba(15, 23, 42, 1), transparent 50%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  color: var(--text-muted);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.filter-bar {
  align-items: center;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tabs-nav {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

nav {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #000;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

/* Landing Section */
.hero {
  padding: 6rem 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* Glassmorphism Card (Wizard) */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Wizard Form */
.wizard-container {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  display: none; /* Hidden by default, shown via JS */
  animation: slideUp 0.5s ease-out forwards;
}

.wizard-container.active {
  display: block;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
  transform: translateY(-50%);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  z-index: 1;
  transition: var(--transition);
}

.step-dot.active {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.step-dot.completed {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.option-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.option-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.05);
}

.option-card.selected {
  border-color: var(--accent-color);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: inset 0 0 0 1px var(--accent-color);
  transform: scale(1.02);
}

.option-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.option-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.option-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* Pill/Chip selector (Zaman Planlaması) */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.pill-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 44px;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  user-select: none;
}

.pill-option:hover {
  border-color: var(--accent-color);
  color: var(--text-main);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.pill-option.selected {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
  animation: pill-pop 0.25s ease-out;
  transform: scale(1.05);
}

.pill-emoji {
  font-size: 1.1rem;
  line-height: 1;
}

@keyframes pill-pop {
  0% { transform: scale(0.95); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1.05); }
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Dashboard Styles */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: rgba(212, 175, 55, 0.2);
  color: var(--accent-hover);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-suggest {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  font-size: 0.8rem;
}

.badge-suggest:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-color);
  color: var(--text-main);
  transform: translateY(-1px);
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ai-rotate {
  0% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3)); }
  50% { transform: rotate(180deg) scale(1.1); filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6)); }
  100% { transform: rotate(360deg) scale(1); filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3)); }
}

@keyframes load-bar {
  0% { left: -30%; width: 30%; }
  50% { width: 40%; }
  100% { left: 100%; width: 30%; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }

/* Modal & Paywall Styles */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Agent Selection premium cards in Step 5 */
.agent-select-card {
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--accent-color);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
  padding: 1.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  user-select: none;
}

.agent-select-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.18);
}

.agent-select-card.deselected {
  opacity: 0.35;
  filter: grayscale(100%);
  border-color: var(--border-color) !important;
  background: rgba(0, 0, 0, 0.15) !important;
  transform: none !important;
  box-shadow: none !important;
}

.card-checkmark {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
  background: var(--accent-color);
  color: #000;
  transition: var(--transition);
}

.agent-select-card.deselected .card-checkmark {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  color: transparent;
}

.modal-content {
  background: var(--bg-color);
  border: 1px solid var(--accent-color);
  border-radius: 16px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.blur-text {
  filter: blur(5px);
  user-select: none;
  color: var(--text-muted);
}

.premium-badge {
  background: linear-gradient(45deg, #d4af37, #fcd34d);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Spin Animation */
.spin {
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==================== */
/* Mobile Responsive    */
/* ==================== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero p {
    font-size: 1rem;
  }

  .glass-card {
    padding: 1.2rem;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .wizard-footer .btn {
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
  }

  .badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .badge-suggest {
    font-size: 0.7rem;
  }

  .pill-option {
    height: 40px;
    padding: 0 0.9rem;
    font-size: 0.85rem;
  }

  .option-card h4 {
    font-size: 1rem;
  }

  .option-card p {
    font-size: 0.8rem;
  }

  .option-card i {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }

  .step-indicator {
    margin-bottom: 1.5rem;
  }

  .step-dot {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.2rem;
  }
}

@keyframes float-sparkle { 0% { transform: translateY(0px) scale(1); filter: brightness(1) drop-shadow(0 0 12px rgba(0,242,254,0.4)); } 50% { transform: translateY(-3px) scale(1.05); filter: brightness(1.2) drop-shadow(0 0 20px rgba(0,242,254,0.8)); } 100% { transform: translateY(0px) scale(1); filter: brightness(1) drop-shadow(0 0 12px rgba(0,242,254,0.4)); } } .ai-sparkle-icon { animation: float-sparkle 3s ease-in-out infinite; }

/* ============================================================
   MARKETING SECTIONS — evplanim.ai Landing & Legal Pages
   ============================================================ */

/* --- Section Utilities --- */
.section {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.6rem;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.7;
}
.section-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0;
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 1.5rem;
  background: rgba(212,175,55,0.04);
  border-top: 1px solid rgba(212,175,55,0.12);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
.trust-item {
  text-align: center;
}
.trust-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  line-height: 1.2;
}
.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* --- How It Works (3-step timeline) --- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-color), transparent);
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--accent-color);
  transition: var(--transition);
}
.how-step:hover .how-step-icon {
  background: rgba(212,175,55,0.2);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
  transform: scale(1.08);
}
.how-step-number {
  display: inline-block;
  background: var(--accent-color);
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 0.6rem;
}
.how-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}
.how-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Features Grid (4 cards) --- */
.features-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card-v2 {
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}
.feature-card-v2:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-card-v2 .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent-color);
}
.feature-card-v2 h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}
.feature-card-v2 p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(212,175,55,0.3);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.faq-question:hover {
  color: var(--accent-color);
}
.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-color);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}
.faq-answer p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --- Agents CTA Strip --- */
.agents-cta-strip {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.agents-cta-strip h2 {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}
.agents-cta-strip p {
  max-width: 550px;
  margin: 0 auto 1.5rem;
}

/* --- Global Footer --- */
.site-footer {
  background: rgba(10, 15, 30, 0.95);
  border-top: 1px solid var(--border-color);
  padding: 4rem 1.5rem 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--accent-color);
}
.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.social-icon:hover {
  background: rgba(212,175,55,0.15);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}
.social-icon svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  margin-top: 3rem;
  padding: 1.5rem 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.payment-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.payment-logos img {
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.payment-logos img:hover {
  opacity: 1;
}

/* --- Legal / Content Pages --- */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.legal-page .legal-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.legal-page h3 {
  font-size: 1rem;
  color: var(--text-main);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-page p,
.legal-page li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.legal-page ul, .legal-page ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page li {
  margin-bottom: 0.4rem;
}
.legal-page a {
  color: var(--accent-color);
  text-decoration: underline;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.legal-page th, .legal-page td {
  border: 1px solid var(--border-color);
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  text-align: left;
}
.legal-page th {
  background: rgba(212,175,55,0.08);
  color: var(--accent-color);
  font-weight: 600;
}

/* --- Nav for sub-pages (legal, hakkimizda etc.) --- */
.sub-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.sub-nav .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.3rem;
}
.sub-nav .logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.sub-nav .logo .ai-suffix {
  color: var(--text-muted);
  font-weight: 400;
}

/* --- Responsive Additions --- */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .trust-bar {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .trust-number {
    font-size: 1.5rem;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .how-steps::before {
    display: none;
  }
  .features-grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .agents-cta-strip {
    padding: 2rem 1.5rem;
  }
  .legal-page {
    padding: 2rem 1rem 3rem;
  }
  .legal-page h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .trust-bar {
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  .trust-number {
    font-size: 1.2rem;
  }
  .trust-label {
    font-size: 0.7rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
