/* ==========================================================================
   MediStok-Pro — Kurumsal Web Sitesi v2
   Stripe-stili lacivert + turuncu tasarım dili
   ========================================================================== */

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

:root {
  --navy-deep: #0A0E27;
  --navy: #1B2D5C;
  --navy-mid: #2E4580;
  --navy-light: #3D4F8A;
  --navy-purple: #4A4FAB;
  --orange: #FF6C37;
  --orange-light: #FF8B5C;
  --orange-dark: #E55A28;
  --white: #FFFFFF;
  --bg-light: #F5F7FA;
  --bg-section: #FAFBFD;
  --text-primary: #0A0E27;
  --text-secondary: #4A5568;
  --text-muted: #697282;
  --border: #E1E5EB;
  --border-soft: #EDF0F4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 14, 39, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.btn-demo {
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(255, 108, 55, 0.3);
  white-space: nowrap;
}
.btn-demo:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 108, 55, 0.4);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 6px;
  cursor: pointer;
  align-items: center; justify-content: center;
}

/* ==========================================================================
   HERO — ANA SAYFA (BURST'LU)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #1A1F4D 0%, #2A2F7D 40%, #4A4FAB 80%, #5A5FBB 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(120, 100, 255, 0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.burst-canvas {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
}

.stats-bar {
  position: relative;
  z-index: 5;
  padding: 140px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-num {
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.stat-num .accent { color: var(--orange-light); }
.stat-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.hero-text-section {
  position: relative;
  z-index: 5;
  padding: 80px 0 120px;
  margin-top: auto;
}
.hero-text-section h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 1100px;
  margin-bottom: 24px;
}
.hero-text-section .hero-sub {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  max-width: 920px;
  margin-bottom: 44px;
  letter-spacing: -0.01em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(255, 108, 55, 0.3);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 108, 55, 0.4);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-controls {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.control-btn {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.control-btn:hover { background: rgba(255, 255, 255, 0.2); }

/* ==========================================================================
   HERO — DİĞER SAYFALAR (KÜÇÜK, BURST'SUZ)
   ========================================================================== */
.subhero {
  position: relative;
  min-height: 40vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}
.subhero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 108, 55, 0.35) 0%, rgba(255, 108, 55, 0.12) 35%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.subhero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(120, 100, 255, 0.28) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.subhero .container { position: relative; z-index: 2; }
.subhero .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.subhero h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 20px;
}
.subhero p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  line-height: 1.55;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 100px 0; background: var(--white); }
.section-alt { background: var(--bg-section); }
.section-dark {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-dark .section-eyebrow { color: var(--orange-light); }

.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 900px;
}
.section-dark .section-title { color: var(--white); }
.section-title .muted { color: var(--text-muted); }
.section-dark .section-title .muted { color: rgba(255,255,255,0.6); }

.section-lede {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.section-dark .section-lede { color: rgba(255,255,255,0.8); }

/* ==========================================================================
   FEATURED MODULES (3'lü kart)
   ========================================================================== */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.featured-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.3s;
}
.featured-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 108, 55, 0.12);
}
.featured-icon {
  width: 48px; height: 48px;
  background: rgba(255, 108, 55, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.featured-icon svg { width: 24px; height: 24px; color: var(--orange); }
.featured-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange-dark);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.featured-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.featured-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.featured-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.featured-list li {
  font-size: 13px;
  color: var(--text-primary);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}
.featured-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

/* ==========================================================================
   MODULE LIST (7 modül liste tarzı)
   ========================================================================== */
.module-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.module-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.2s;
}
.module-item:hover {
  border-color: var(--navy-light);
  box-shadow: 0 4px 16px rgba(10, 14, 39, 0.06);
}
.module-item-icon {
  width: 40px; height: 40px;
  background: var(--bg-section);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.module-item-icon svg { width: 20px; height: 20px; color: var(--navy); }
.module-item-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.module-item-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   INTEGRATIONS GRID (4'lü hücre, lacivert arkaplan)
   ========================================================================== */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px;
}
.integ-cell {
  background: var(--navy-deep);
  padding: 36px 28px;
  transition: background 0.2s;
}
.integ-cell:hover { background: var(--navy); }
.integ-cell .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange-light);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-weight: 500;
}
.integ-cell h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.integ-cell p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ==========================================================================
   CTA SECTION (sayfa altı)
   ========================================================================== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-purple) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 108, 55, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 36px;
}
.cta-section .hero-ctas { justify-content: center; }

/* ==========================================================================
   DETAIL MODULE BLOCK (ozellikler.html)
   ========================================================================== */
.module-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-soft);
}
.module-detail:last-child { border-bottom: none; }
.module-detail.alt { background: var(--bg-section); }
.module-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.module-detail h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.module-detail .lede {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.module-detail .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.feature-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
}
.feature-block h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.feature-block h4::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.feature-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.feature-tag {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   ÖZELLİKLER — alterne 2-sütun layout + zengin sağ panel
   ========================================================================== */

.module-detail-grid.alternate-right {
  grid-template-columns: 0.75fr 1fr;
}
.module-detail-grid.alternate-left {
  grid-template-columns: 1fr 0.75fr;
}
.module-detail-grid.alternate-left > .text-col { order: 2; }
.module-detail-grid.alternate-left > .visual-col { order: 1; }

.text-col h2 { font-size: 38px; line-height: 1.15; }
.text-col .lede { margin-bottom: 20px; }
.text-col .btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(255, 108, 55, 0.25);
}
.text-col .btn-inline:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 108, 55, 0.35);
}

/* Modüller arası geçiş ayracı */
.module-divider {
  text-align: center;
  padding: 32px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}
.module-divider::before,
.module-divider::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 1px;
  background: var(--orange);
  opacity: 0.4;
  margin: 0 16px;
}

/* === ÜTS bildirim tipleri grid (sağ sütun) === */
.uts-bildirim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.uts-bildirim-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  line-height: 1.3;
}
.uts-bildirim-cell:hover {
  border-color: var(--orange);
  background: rgba(255, 108, 55, 0.04);
  color: var(--orange-dark);
  transform: translateY(-1px);
}
.uts-count-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--navy-deep);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 10px;
  margin-bottom: 18px;
}
.uts-count-badge .num {
  font-size: 32px;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: -0.02em;
  line-height: 1;
}
.uts-count-badge .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

/* === İhale durum timeline (sağ sütun) === */
.tender-timeline {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.tender-timeline-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.timeline-status {
  position: relative;
  padding: 14px 10px;
  border-radius: 8px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid;
  line-height: 1.25;
}
.timeline-status.bekleme   { background: #FFFBEB; border-color: #FCD34D; color: #92400E; }
.timeline-status.kazandi   { background: #ECFDF5; border-color: #6EE7B7; color: #065F46; }
.timeline-status.kismen    { background: #EFF6FF; border-color: #93C5FD; color: #1E40AF; }
.timeline-status.kaybetti  { background: #FEF2F2; border-color: #FCA5A5; color: #991B1B; }
.timeline-status.iptal     { background: #F1F5F9; border-color: #CBD5E1; color: #475569; }

.tender-currencies {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tender-currency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.tender-currency .sym {
  color: var(--orange);
  font-size: 14px;
}

.tender-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.tender-stat {
  text-align: center;
}
.tender-stat .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tender-stat .lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === Analiz rapor grid (sağ sütun) === */
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.report-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 18px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.report-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 108, 55, 0.12);
}
.report-card .icon {
  width: 36px; height: 36px;
  background: rgba(255, 108, 55, 0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.report-card .icon svg { width: 18px; height: 18px; color: var(--orange); }
.report-card h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.report-card p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
/* Mini chart placeholder */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  margin-top: 10px;
}
.mini-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(255, 108, 55, 0.3) 100%);
  border-radius: 2px 2px 0 0;
  opacity: 0.7;
}

/* Diğer modüller (kısa) — alt taraf düzeni */
.module-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.module-mini {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}
.module-mini:hover {
  border-color: var(--navy-light);
  box-shadow: 0 4px 16px rgba(10, 14, 39, 0.06);
}
.module-mini .head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.module-mini .head .ic {
  width: 36px; height: 36px;
  background: var(--bg-section);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.module-mini .head .ic svg { width: 18px; height: 18px; color: var(--navy); }
.module-mini h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.module-mini .desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}
.module-mini ul {
  list-style: none;
  padding: 0;
}
.module-mini ul li {
  font-size: 12.5px;
  padding: 4px 0;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.module-mini ul li::before {
  content: '+';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

@media (max-width: 968px) {
  .module-detail-grid.alternate-right,
  .module-detail-grid.alternate-left { grid-template-columns: 1fr; }
  .module-detail-grid.alternate-left > .text-col { order: 1; }
  .module-detail-grid.alternate-left > .visual-col { order: 2; }
}
@media (max-width: 600px) {
  .text-col h2 { font-size: 26px; }
  .uts-bildirim-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .report-grid { grid-template-columns: repeat(2, 1fr); }
  .module-mini-grid { grid-template-columns: 1fr; }
  .tender-stats { grid-template-columns: 1fr; gap: 16px; }
  .module-divider::before, .module-divider::after { width: 30px; margin: 0 10px; }
}

/* ==========================================================================
   PRICING (fiyatlandirma.html)
   ========================================================================== */
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 56px;
  position: relative;
}
.pricing-toggle button {
  background: transparent;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s;
  font-family: inherit;
}
.pricing-toggle button.active {
  background: var(--navy-deep);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}
.price-card.featured {
  border-color: var(--orange);
  border-width: 2px;
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 108, 55, 0.18);
}
.price-card .trial-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-deep);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.price-card.featured .trial-badge { background: var(--orange); }
.price-card .featured-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--navy-deep);
  color: var(--orange-light);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: 'JetBrains Mono', monospace;
}
.price-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
}
.price-card .tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  min-height: 42px;
}
.price-card .amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.price-card .amount-num {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card .amount-period {
  font-size: 14px;
  color: var(--text-muted);
}
.price-card .savings {
  display: block;
  margin-top: 12px;
  margin-bottom: 24px;
  padding: 10px 14px;
  background: rgba(255, 108, 55, 0.08);
  border: 1px solid rgba(255, 108, 55, 0.20);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--orange-dark);
  min-height: 42px;
  text-align: center;
}
.price-card .savings:empty {
  background: transparent;
  border: 1px solid transparent;
}
.price-card .savings .highlight {
  font-weight: 700;
  color: #C44A20;
  white-space: nowrap;
}
.price-card ul {
  list-style: none;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.price-card ul li {
  font-size: 14px;
  color: var(--text-primary);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-card ul li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card .btn-pkg {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--navy-deep);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.price-card.featured .btn-pkg { background: var(--orange); }
.price-card .btn-pkg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 14, 39, 0.18);
}
.price-card.featured .btn-pkg:hover {
  box-shadow: 0 8px 24px rgba(255, 108, 55, 0.4);
}

/* SSS / FAQ */
.faq-list {
  max-width: 820px;
  margin: 60px auto 0;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--orange);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT (iletisim.html)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: rgba(255, 108, 55, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--orange); }
.contact-card .label {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-card .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  word-break: break-word;
}
.contact-card .value a { text-decoration: none; }
.contact-card .value a:hover { color: var(--orange); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(10, 14, 39, 0.04);
}
.form-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.form-card .form-lede {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 108, 55, 0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-checkbox input { margin-top: 3px; flex-shrink: 0; }
.form-checkbox a { color: var(--orange); text-decoration: underline; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-submit {
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  width: 100%;
}
.form-submit:hover:not(:disabled) {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 108, 55, 0.3);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.form-message.success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
}
.form-message.error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}

/* ==========================================================================
   PROCESS (4 adımlı entegrasyon süreci)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  text-align: left;
}
.process-step .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   ABOUT VALUES
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
}
.value-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}
.value-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-prose {
  max-width: 760px;
}
.about-prose p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 0;
}
.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}
.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   RESPONSIVE — mobile-first kademelendirme
   Breakpoints: <600 telefon · 600-968 tablet · >968 desktop
   ========================================================================== */

/* === TABLET (≤ 968px) === */
@media (max-width: 968px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy-deep);
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
  }
  .nav-links.open li:last-child a { border-bottom: none; }
  .menu-toggle { display: flex; }

  .featured-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .integ-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 24px auto 0; }
  .price-card.featured { transform: none; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .module-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .module-list { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-bar { padding: 110px 0 40px; }
  .stat-num { font-size: 42px; }
  .hero-text-section { padding: 56px 0 80px; }
  .hero-text-section h1 { font-size: 44px; line-height: 1.15; }
  .hero-text-section .hero-sub { font-size: 18px; margin-bottom: 32px; }
  .hero-controls { display: none; }

  .subhero { padding: 120px 0 60px; min-height: auto; }
  .subhero h1 { font-size: 40px; }
  .subhero p { font-size: 17px; }

  .section { padding: 64px 0; }
  .section-title { font-size: 34px; }
  .module-detail { padding: 56px 0; }
  .module-detail h2 { font-size: 28px; }

  .cta-section { padding: 72px 0; }
  .cta-section h2 { font-size: 34px; }
}

/* === TELEFON (≤ 600px) === */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  header .nav { height: 64px; }

  /* Hero */
  .stats-bar { padding: 96px 0 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stat-num { font-size: 28px; margin-bottom: 8px; }
  .stat-desc { font-size: 13px; line-height: 1.45; }

  .hero-text-section { padding: 40px 0 64px; }
  .hero-text-section h1 {
    font-size: 30px;
    line-height: 1.18;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .hero-text-section .hero-sub {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  /* Hero CTA'lar tam genişlik */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .hero-ctas a,
  .hero-ctas button {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
  }

  /* Subhero */
  .subhero { padding: 96px 0 48px; }
  .subhero h1 { font-size: 28px; line-height: 1.2; }
  .subhero p { font-size: 15px; }
  .subhero .eyebrow { font-size: 11px; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-eyebrow { font-size: 11px; }
  .section-title { font-size: 26px; line-height: 1.2; }
  .section-lede { font-size: 15px; }

  /* Featured kartlar (3'lü) */
  .featured-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .featured-card { padding: 28px 22px; }
  .featured-name { font-size: 20px; }
  .featured-desc { font-size: 13.5px; }

  /* Modül listesi */
  .module-list { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .module-item { padding: 18px; gap: 12px; }
  .module-item-text h4 { font-size: 15px; }
  .module-item-text p { font-size: 13px; }

  /* Entegrasyon grid 1 sütun */
  .integ-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .integ-cell { padding: 24px 20px; }

  /* Modül detay (ozellikler) */
  .module-detail { padding: 48px 0; }
  .module-detail-grid { gap: 24px; }
  .module-detail h2 { font-size: 24px; }
  .module-detail .lede { font-size: 15px; }
  .feature-block { padding: 20px; }
  .feature-block h4 { font-size: 14px; }
  .feature-block p { font-size: 13px; }

  /* Süreç (4 adım) */
  .process-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .process-step { padding: 24px 20px; }
  .process-step h4 { font-size: 16px; }

  /* Değerler */
  .values-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .value-card { padding: 28px 22px; }

  /* Fiyatlandırma */
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; margin: 16px auto 0; gap: 28px; }
  .pricing-toggle { margin-bottom: 36px; }
  .pricing-toggle button { padding: 9px 18px; font-size: 13px; }
  .price-card { padding: 32px 22px; }
  .price-card.featured { transform: none; }
  .price-card .amount-num { font-size: 36px; }
  .price-card h3 { font-size: 13px; }
  .price-card .tagline { min-height: 0; margin-bottom: 22px; }
  .price-card .btn-pkg { padding: 14px 18px; }

  /* SSS */
  .faq-list { margin-top: 36px; }
  .faq-item summary { padding: 16px 18px; font-size: 14.5px; }
  .faq-item .faq-body { padding: 0 18px 16px; font-size: 14px; }

  /* İletişim */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-card { padding: 18px; gap: 12px; }
  .contact-card-icon { width: 38px; height: 38px; }
  .contact-card .value { font-size: 14px; }
  .form-card { padding: 22px 18px; border-radius: 12px; }
  .form-card h3 { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; padding: 12px; } /* iOS zoom önleme */
  .form-submit { padding: 14px 20px; }

  /* Hakkımızda metin */
  .about-prose p { font-size: 15px; line-height: 1.65; }

  /* Yasal */
  .legal-content { padding: 48px 0; }
  .legal-content h2 { font-size: 19px; margin: 28px 0 12px; }
  .legal-content p, .legal-content li { font-size: 14px; }

  /* CTA */
  .cta-section { padding: 56px 0; }
  .cta-section h2 { font-size: 26px; line-height: 1.2; }
  .cta-section p { font-size: 15px; margin-bottom: 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand p { max-width: none; font-size: 13.5px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 12.5px; }

  /* Tag chip'leri sıkışsın */
  .feature-tags { gap: 6px; }
  .feature-tag { padding: 5px 11px; font-size: 11px; }

  /* Logo header'da daha küçük */
  .logo { font-size: 16px; }
  .logo-mark { width: 30px; height: 30px; padding: 3px; }

  /* Hero pause kontrolü mobilde gizli */
  .hero-controls { display: none !important; }
}

/* === ÇOK KÜÇÜK TELEFON (≤ 380px) === */
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .stat-num { font-size: 26px; }
  .hero-text-section h1 { font-size: 26px; }
  .subhero h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  .price-card { padding: 28px 20px; }
}

/* ==========================================================================
   SSS / FAQ Bölümü — açılır-kapanır, native <details>/<summary>
   ========================================================================== */

.nav-mobile-only { display: none; }

.faq-section {
  padding: 90px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-soft);
}

.faq-section .section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.faq-section .section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.faq-section .section-title .accent { color: var(--orange); }

.faq-section .section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 640px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--orange-light);
  box-shadow: 0 4px 18px rgba(255, 108, 55, 0.08);
}

.faq-item[open] {
  border-color: var(--orange);
  box-shadow: 0 6px 22px rgba(255, 108, 55, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

.faq-question:hover { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--orange);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 26px 24px 26px;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.75;
  border-top: 1px solid var(--border-soft);
  animation: faq-slide-down 0.28s ease-out;
}

.faq-answer p {
  margin: 14px 0 0 0;
}

.faq-answer p:first-child {
  margin-top: 16px;
}

@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === FAQ Mobile === */
@media (max-width: 768px) {
  .faq-section { padding: 64px 0; }
  .faq-section .section-title { font-size: 28px; }
  .faq-section .section-sub { font-size: 15.5px; margin-bottom: 32px; }
  .faq-question {
    padding: 18px 20px;
    font-size: 15.5px;
    gap: 12px;
  }
  .faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 14.5px;
  }
}

@media (max-width: 968px) {
  .nav-links.open .nav-mobile-only { display: block; }
}
