/* ============================================================
   HABAŞ Akıllı Fabrika Platformu — ThinkBro tasarım DNA'sı
   Lacivert + Altın palet, dalga geçişleri, spotlight kartlar
   ============================================================ */

:root {
  --primary-color: #1a365d;
  --primary-light: #2c5282;
  --primary-dark: #0f2a44;
  --primary-deeper: #061e36;
  --accent-color: #c89d3b;
  --accent-light: #e0b54a;
  --accent-warm: #f0c75e;
  --accent-dark: #a17920;
  --ember: #e2572b;            /* sıvı çelik turuncusu */
  --ember-light: #ff7a45;
  --success: #2f9e6e;
  --danger: #d64545;
  --warning: #d69e2e;
  --info: #3182ce;
  --white: #ffffff;
  --bg: #f4f6fa;
  --surface: #ffffff;
  --line: #e2e8f0;
  --text: #1e293b;
  --text-soft: #64748b;
  --accent-gradient: linear-gradient(135deg, #1a365d 0%, #2c5282 45%, #c89d3b 100%);
  --accent-gradient-gold: linear-gradient(135deg, #a17920 0%, #c89d3b 45%, #f0c75e 100%);
  --accent-gradient-navy: linear-gradient(135deg, #061e36 0%, #1a365d 50%, #2c5282 100%);
  --ember-gradient: linear-gradient(135deg, #b33d16 0%, #e2572b 50%, #ff9c5a 100%);
  --shadow-sm: 0 2px 8px -2px rgba(15, 42, 68, 0.10);
  --shadow-md: 0 10px 28px -10px rgba(15, 42, 68, 0.22);
  --shadow-lg: 0 24px 48px -16px rgba(15, 42, 68, 0.30);
  --radius: 16px;
  --font: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- İkonlar (varsayılan boyut) ---------- */
.ico { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Fare izi canvas ---------- */
#cursor-trail-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

/* ---------- Sayfa geçişi — menü yerinde, içerik kısa soluk ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: page-fade-out 0.18s ease both; }
::view-transition-new(root) { animation: page-fade-in 0.22s ease both; }
@keyframes page-fade-out { to { opacity: 0; } }
@keyframes page-fade-in { from { opacity: 0; } to { opacity: 1; } }
.navbar { view-transition-name: site-nav; }

body.page-enter main.page {
  animation: page-fade-in 0.28s ease both;
}
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
  body.page-enter main.page { animation: none; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(6, 30, 54, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 157, 59, 0.18);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.navbar-scrolled { background: rgba(6, 30, 54, 0.98); box-shadow: 0 8px 24px -12px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-brand b { color: var(--accent-warm); font-weight: 800; }
.brand-text {
  color: var(--accent-warm);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}
.brand-logo {
  display: block;
  height: auto;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-logo-nav { height: 33px; width: auto; max-width: 160px; }
.brand-logo-hero {
  height: 78px;
  width: auto;
  max-width: min(380px, 78vw);
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.45));
}
.brand-logo-login { height: 58px; width: auto; max-width: 280px; }
.brand-logo-footer { height: 26px; width: auto; max-width: 132px; }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ember-gradient);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px -4px rgba(226, 87, 43, 0.6);
}
.brand-ico { width: 20px; height: 20px; color: #fff; }
.demo-chip {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--accent-gradient-gold);
  color: var(--primary-dark);
  padding: 2px 8px;
  border-radius: 999px;
}
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.nav-link .ico { width: 16px; height: 16px; }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link.active, .active-group .drop-btn {
  color: var(--accent-warm);
  background: rgba(200, 157, 59, 0.12);
}
.nav-link.nav-cta {
  color: var(--primary-dark);
  background: var(--accent-gradient-gold);
  margin-left: 4px;
}
.nav-link.nav-cta:hover,
.nav-link.nav-cta.active {
  color: var(--primary-dark);
  background: var(--accent-gradient-gold);
  filter: brightness(1.06);
}
.nav-link.nav-cta.active::after { display: none; }

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: -13px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--accent-gradient-gold);
}
.ai-btn { color: #a5b4fc; }
.caret { width: 13px; height: 13px; transition: transform 0.25s; }
.nav-drop { position: relative; }
.nav-drop:hover .caret { transform: rotate(180deg); }
.drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 950;
}
.nav-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
}
.drop-menu a:hover { background: linear-gradient(135deg, rgba(26,54,93,0.06), rgba(200,157,59,0.10)); transform: translateX(3px); }
.drop-menu a .ico { width: 18px; height: 18px; color: var(--primary-light); flex-shrink: 0; }
.drop-menu a b { display: block; font-size: 0.85rem; }
.drop-menu a small { color: var(--text-soft); font-size: 0.72rem; }
.drop-right { left: auto; right: 0; }
.drop-user-info { padding: 10px 12px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.drop-user-info small { color: var(--text-soft); display: block; }
.drop-danger { color: var(--danger) !important; }
.drop-danger .ico { color: var(--danger) !important; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.ai-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #86efac;
  background: rgba(47, 158, 110, 0.15);
  border: 1px solid rgba(47, 158, 110, 0.3);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.25s;
}
.user-btn:hover { background: rgba(255,255,255,0.15); }
.user-btn .ico { width: 16px; height: 16px; }
.hamburger { display: none; background: none; border: none; color: #fff; cursor: pointer; }
.hamburger svg { width: 26px; height: 26px; }
.mobile-menu { display: none; }

/* ---------- Genel sayfa ---------- */
.page { flex: 1; width: 100%; max-width: 1380px; margin: 0 auto; padding: 28px 20px 60px; }
.page-full { max-width: none; padding: 0; }

.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.page-head h1 {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-head h1 .ico { width: 30px; height: 30px; color: var(--accent-dark); }
.page-head p { color: var(--text-soft); font-size: 0.9rem; margin-top: 3px; }

/* ---------- Modül bilgi kartı (sunum brifingi) ---------- */
.module-brief {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  margin: 0 0 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}
.module-brief-main { padding: 18px 22px 16px; }
.module-brief-live {
  padding: 18px 22px 16px;
  background: var(--accent-gradient-navy);
  color: #e8eef6;
  position: relative;
}
.module-brief-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.module-brief-kicker .ico { width: 14px; height: 14px; }
.module-brief-kicker.light { color: var(--accent-warm); }
.module-brief h2 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.module-brief-main > p {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 10px;
  line-height: 1.55;
}
.module-brief-main ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.65;
}
.module-brief-main li { margin-bottom: 2px; }
.module-brief-live p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #c5d4e8;
  margin: 0 0 12px;
}
.module-brief-note {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--primary-dark);
  background: var(--accent-gradient-gold);
  padding: 4px 10px;
  border-radius: 999px;
}
@media (max-width: 860px) {
  .module-brief { grid-template-columns: 1fr; }
}

/* ---------- Butonlar (ThinkBro DNA) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  transition: background-position 0.5s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.btn .ico { width: 16px; height: 16px; }
.btn-primary {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 55%, #1a365d 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--white);
  box-shadow: 0 6px 16px -4px rgba(26, 54, 93, 0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, transparent 0%, rgba(200,157,59,0.6) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(26,54,93,0.5), 0 0 0 4px rgba(200,157,59,0.12), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover::before { opacity: 1; }
.btn-gold {
  background: linear-gradient(135deg, #c89d3b 0%, #e0b54a 55%, #c89d3b 100%);
  background-size: 200% 200%;
  color: var(--primary-dark);
  box-shadow: 0 14px 34px -10px rgba(200,157,59,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-gold:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(200,157,59,0.65), 0 0 0 4px rgba(255,255,255,0.10);
}
.btn-ai {
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 55%, #4338ca 100%);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(88, 60, 202, 0.55);
}
.btn-ai:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(88,60,202,0.65), 0 0 0 4px rgba(139,92,246,0.15); }
.btn-ghost {
  background: var(--white);
  color: var(--primary-color);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--accent-color); color: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.navy-cta {
  background: var(--accent-gradient-navy);
  border: none;
  color: #fff;
}
.navy-cta h3 { color: #fff; }
.navy-cta p { color: #b8c7dc; font-size: 0.88rem; max-width: 860px; margin-bottom: 16px; }
.navy-cta-acts { display: flex; flex-wrap: wrap; gap: 10px; }
.navy-cta .btn-ghost {
  background: #fff;
  color: var(--primary-dark);
  border-color: transparent;
}
.navy-cta .btn-ghost .ico { color: var(--primary-dark); }
.navy-cta .btn-ghost:hover { color: var(--accent-dark); border-color: var(--accent-color); }
.btn-sm { padding: 7px 15px; font-size: 0.8rem; }
.btn:disabled { opacity: 0.55; cursor: wait; transform: none !important; }

/* ---------- Kartlar + Spotlight (ThinkBro data-spotlight) ---------- */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.card.lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(200,157,59,0.45); }
[data-spotlight] { --mx: 50%; --my: 50%; }
[data-spotlight]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx) var(--my), rgba(200,157,59,0.14), rgba(44,82,130,0.06) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
[data-spotlight]:hover::after { opacity: 1; }
.card h3 { font-size: 1.02rem; font-weight: 800; color: var(--primary-dark); display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.card.navy-cta h3 { color: #fff; }
.card.navy-cta h3 .ico { color: #f0c75e; }
.card h3 .ico { width: 20px; height: 20px; color: var(--accent-dark); }
.card-sub { font-size: 0.8rem; color: var(--text-soft); margin: -8px 0 14px; }

/* ---------- KPI kartları ---------- */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 16px; margin-bottom: 22px; }
.kpi {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.kpi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.kpi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent-gradient);
}
.kpi.k-ember::before { background: var(--ember-gradient); }
.kpi.k-gold::before { background: var(--accent-gradient-gold); }
.kpi.k-green::before { background: linear-gradient(135deg, #15803d, #4ade80); }
.kpi.k-red::before { background: linear-gradient(135deg, #b91c1c, #f87171); }
.kpi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.kpi-label { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-soft); }
.kpi-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(26,54,93,0.08), rgba(200,157,59,0.14));
}
.kpi-icon .ico { width: 20px; height: 20px; color: var(--primary-light); }
.kpi-value { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; color: var(--primary-dark); line-height: 1.1; }
.kpi-value small { font-size: 0.95rem; color: var(--text-soft); font-weight: 600; }
.kpi-note { font-size: 0.76rem; color: var(--text-soft); margin-top: 5px; }
.kpi-note .up { color: var(--success); font-weight: 700; }
.kpi-note .down { color: var(--danger); font-weight: 700; }

/* ---------- Izgara yardımcıları ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-31 { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.mt { margin-top: 18px; }
.mb { margin-bottom: 18px; }

/* ---------- Rozetler ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-dot.pulse { animation: dot-pulse 1.6s ease-in-out infinite; }
@keyframes dot-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.8); } }
.badge-success { background: rgba(47,158,110,0.12); color: #1c7a52; }
.badge-danger  { background: rgba(214,69,69,0.12); color: #b32e2e; }
.badge-warning { background: rgba(214,158,46,0.14); color: #9c6f14; }
.badge-info    { background: rgba(49,130,206,0.12); color: #205e94; }
.badge-muted   { background: rgba(100,116,139,0.12); color: #556274; }
.badge-ai      { background: linear-gradient(135deg, rgba(67,56,202,0.12), rgba(109,40,217,0.14)); color: #5b3bc4; }

/* ---------- Tablolar ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
table.data { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
table.data thead th {
  text-align: left;
  padding: 13px 16px;
  background: linear-gradient(135deg, #0f2a44, #1a365d);
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
table.data tbody td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
table.data tbody tr { transition: background 0.2s; }
table.data tbody tr:hover { background: rgba(200,157,59,0.05); }
table.data .mono { font-family: 'Cascadia Code', Consolas, monospace; font-size: 0.8rem; }

/* ---------- Sağlık çubuğu ---------- */
.health-bar { width: 90px; height: 7px; border-radius: 5px; background: #e6e9ef; overflow: hidden; display: inline-block; vertical-align: middle; }
.health-bar i { display: block; height: 100%; border-radius: 5px; background: linear-gradient(90deg, #2f9e6e, #4ade80); transition: width 1s cubic-bezier(0.4,0,0.2,1); }
.health-bar.warn i { background: linear-gradient(90deg, #d69e2e, #fbbf24); }
.health-bar.bad i { background: linear-gradient(90deg, #b91c1c, #f87171); }

/* ---------- Dalga bölücü ---------- */
.wave-divider { position: relative; width: 100%; display: block; line-height: 0; font-size: 0; pointer-events: none; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: 90px; }

.viz-band { padding-top: 4px; padding-bottom: 4px; }
.viz-hero, .viz-card, .viz-inline, .viz-ribbon {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #0b1f36;
  border: 1px solid rgba(26, 54, 93, 0.14);
  box-shadow: var(--shadow-sm);
}
.viz-hero { margin-bottom: 12px; max-width: 720px; }
.viz-hero img, .viz-card img, .viz-inline img, .viz-ribbon img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.viz-hero img { height: 168px; }
.viz-hero figcaption, .viz-card figcaption, .viz-inline figcaption, .viz-ribbon figcaption {
  margin: 0;
  padding: 7px 11px 8px;
  background: #12263f;
  color: #c5d4e8;
  font-size: 0.72rem;
  line-height: 1.4;
}
.viz-card figcaption b, .viz-inline figcaption b {
  display: inline;
  color: #f0c75e;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 6px;
}
.viz-trio, .viz-duo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 6px;
  max-width: 920px;
}
.viz-duo { grid-template-columns: 1fr 1fr; max-width: 640px; margin: 0 0 16px; }
.viz-inline {
  float: right;
  width: 280px;
  max-width: 42%;
  margin: 0 0 12px 18px;
}
.viz-inline img { height: 112px; }
.viz-ribbon { margin: 0 0 12px; max-width: 640px; }
.viz-ribbon img { height: 100px; }
@media (max-width: 900px) {
  .viz-trio, .viz-duo { grid-template-columns: 1fr 1fr; }
  .viz-inline { float: none; width: 100%; max-width: 360px; margin: 0 0 12px; }
  .viz-hero img { height: 132px; }
  .viz-ribbon img { height: 88px; }
}
@media (max-width: 560px) {
  .viz-trio, .viz-duo { grid-template-columns: 1fr; }
}

/* ---------- Hero (landing) ---------- */
.hero {
  position: relative;
  background: var(--primary-deeper);
  color: var(--white);
  overflow: hidden;
  padding: 96px 20px 36px;
}
.hero-photo {
  position: absolute;
  inset: -24px;
  background: url('../img/habas-tesis.jpg') center 40% / cover no-repeat;
  filter: saturate(0.82) contrast(1.06) blur(1.4px);
  opacity: 0.40;
  transform: scale(1.05);
  pointer-events: none;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,30,54,0.58) 0%, rgba(15,42,68,0.55) 42%, rgba(6,30,54,0.90) 100%),
    linear-gradient(90deg, rgba(6,30,54,0.50) 0%, transparent 45%, rgba(6,30,54,0.38) 100%);
  pointer-events: none;
}
.landing-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px 0;
}
.landing-bar-brand { display: flex; align-items: center; }
.landing-bar-brand .brand-logo-nav { height: 36px; max-width: 176px; }
.landing-bar-actions { display: flex; gap: 10px; }
.hero-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.55; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.hero-blob.b1 { width: 420px; height: 420px; background: rgba(200,157,59,0.35); top: -120px; right: -80px; animation: blob-float-1 11s ease-in-out infinite; }
.hero-blob.b2 { width: 340px; height: 340px; background: rgba(226,87,43,0.30); bottom: -100px; left: -60px; animation: blob-float-2 13s ease-in-out infinite; }
.hero-blob.b3 { width: 260px; height: 260px; background: rgba(44,82,130,0.55); top: 30%; left: 42%; animation: blob-float-3 15s ease-in-out infinite; }
@keyframes blob-float-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-38px, 30px) scale(1.1); } }
@keyframes blob-float-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(42px, -26px) scale(1.08); } }
@keyframes blob-float-3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-24px, -34px) scale(1.15); } }
.hero-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(200,157,59,0.4);
  color: var(--accent-warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.14; margin-bottom: 18px; }
.hero h1 .grad {
  background: linear-gradient(120deg, #f0c75e, #e0b54a 40%, #ff9c5a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { font-size: 1.06rem; color: #b8c7dc; max-width: 760px; margin: 0 auto 34px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; max-width: 900px; margin: 0 auto; }
.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 12px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s, border-color 0.3s;
}
.hero-stat:hover { transform: translateY(-4px); border-color: rgba(200,157,59,0.5); }
.hero-stat b { display: block; font-size: 1.55rem; font-weight: 800; color: var(--accent-warm); letter-spacing: -0.02em; }
.hero-stat span { font-size: 0.76rem; color: #9fb2ca; }

/* ---------- Modül kartları (landing) ---------- */
.section { padding: 60px 20px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.landing-modules { position: relative; overflow: hidden; }
.landing-modules::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/habas-tesis.jpg') center 32% / cover no-repeat;
  opacity: 0.07;
  filter: grayscale(0.15) saturate(0.75);
  pointer-events: none;
}
.landing-modules .section-inner { position: relative; z-index: 1; }
.landing-why {
  position: relative;
  overflow: hidden;
  background: var(--primary-deeper);
}
.landing-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/habas-tesis.jpg') center 48% / cover no-repeat;
  opacity: 0.16;
  filter: saturate(0.7) blur(1.2px);
  pointer-events: none;
}
.landing-why .section-inner { position: relative; z-index: 1; }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; color: var(--primary-dark); }
.section-head h2 .grad { background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head p { color: var(--text-soft); max-width: 640px; margin: 10px auto 0; }
.module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.module-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s, border-color 0.4s;
}
.module-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(200,157,59,0.5); }
.module-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-gradient-navy);
  margin-bottom: 16px;
  box-shadow: 0 8px 20px -6px rgba(26,54,93,0.45);
  transition: transform 0.4s;
}
.module-card:hover .module-icon { transform: scale(1.08) rotate(-4deg); }
.module-icon .ico { width: 26px; height: 26px; color: var(--accent-warm); }
.module-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.module-card p { font-size: 0.86rem; color: var(--text-soft); margin-bottom: 14px; }
.module-card .go { font-size: 0.82rem; font-weight: 700; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 6px; }
.module-card .go .ico { width: 15px; height: 15px; transition: transform 0.3s; }
.module-card:hover .go .ico { transform: translateX(5px); }

/* ---------- Aşağı kayınca belirme — ilk ekran boş kalmaz ---------- */
.fade-in-scroll { opacity: 1; transform: none; }
.fade-in-scroll.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fade-in-scroll.reveal.visible { opacity: 1; transform: none; }
.fade-in-scroll.reveal.d1 { transition-delay: 0.04s; }
.fade-in-scroll.reveal.d2 { transition-delay: 0.08s; }
.fade-in-scroll.reveal.d3 { transition-delay: 0.12s; }
.fade-in-scroll.reveal.d4 { transition-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in-scroll.reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Sohbet / AI panelleri ---------- */
.chat-shell { display: grid; grid-template-columns: 1fr 320px; gap: 18px; align-items: start; }
.chat-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 640px;
  overflow: hidden;
}
.chat-head {
  padding: 14px 20px;
  background: var(--accent-gradient-navy);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-head .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ember-gradient);
  display: grid; place-items: center;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
.chat-head .avatar .ico { width: 20px; height: 20px; color: #fff; }
.chat-head b { font-size: 0.95rem; }
.chat-head small { display: block; font-size: 0.72rem; color: #9fb2ca; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px; background: linear-gradient(180deg, #f8fafc, #f1f5f9); }
.msg { max-width: 82%; padding: 12px 16px; border-radius: 16px; font-size: 0.88rem; line-height: 1.55; animation: msg-in 0.35s cubic-bezier(0.4,0,0.2,1); white-space: pre-wrap; }
@keyframes msg-in { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: none; } }
.msg.user { align-self: flex-end; background: var(--accent-gradient-navy); color: #fff; border-bottom-right-radius: 4px; }
.msg.bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.msg.bot b { color: var(--primary-color); }
.typing-dots { display: inline-flex; gap: 4px; align-items: center; }
.typing-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--primary-light); animation: t-bounce 1.2s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes t-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-6px); opacity: 1; } }
.chat-input-row { display: flex; gap: 10px; padding: 14px; border-top: 1px solid var(--line); background: #fff; }
.chat-input-row input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.chat-input-row input:focus { border-color: var(--accent-color); box-shadow: 0 0 0 4px rgba(200,157,59,0.12); }
.quick-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.25s;
  text-align: left;
}
.chip:hover { border-color: var(--accent-color); background: rgba(200,157,59,0.08); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Formlar ---------- */
.spec-file-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.spec-upload { cursor: pointer; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 15px;
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  background: #fff;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(200,157,59,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-hint { display: block; margin-top: 6px; font-size: 0.75rem; color: var(--text-soft); line-height: 1.45; }
.secret-input { -webkit-text-security: disc; }
.autofill-bait {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* ---------- AI sonuç kutusu ---------- */
.ai-result {
  background: linear-gradient(135deg, rgba(67,56,202,0.04), rgba(200,157,59,0.06));
  border: 1.5px solid rgba(109,40,217,0.25);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 0.88rem;
  white-space: pre-wrap;
  line-height: 1.65;
  animation: msg-in 0.4s ease;
  position: relative;
}
.ai-result::before {
  content: 'AI ANALİZ';
  position: absolute;
  top: -11px;
  left: 18px;
  background: linear-gradient(135deg, #4338ca, #6d28d9);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 999px;
}
.ai-thinking { display: flex; align-items: center; gap: 12px; padding: 18px; color: var(--text-soft); font-size: 0.86rem; font-style: italic; }

/* ---------- Login ---------- */
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--primary-deeper);
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.login-wrap .hero-photo,
.login-wrap .hero-veil,
.login-wrap .hero-blobs { z-index: 0; }
.login-photo { opacity: 0.32; }
.login-card {
  width: 100%;
  max-width: 430px;
  background: rgba(255,255,255,0.97);
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
  animation: msg-in 0.6s cubic-bezier(0.4,0,0.2,1);
}
.login-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 8px; }
.login-logo .brand-mark { width: 46px; height: 46px; }
.login-logo .brand-ico { width: 24px; height: 24px; }
.login-logo-plate {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-deeper);
  border-radius: 14px;
  padding: 16px 22px;
  margin: 0 auto 16px;
  max-width: 340px;
  box-shadow: 0 10px 24px -12px rgba(6,30,54,0.55);
}
.login-card h1 { text-align: center; font-size: 1.35rem; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.02em; }
.login-card .sub { text-align: center; color: var(--text-soft); font-size: 0.84rem; margin: 6px 0 26px; }
.login-demo-note {
  background: linear-gradient(135deg, rgba(26,54,93,0.05), rgba(200,157,59,0.1));
  border: 1px dashed rgba(200,157,59,0.6);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}
.login-error { background: rgba(214,69,69,0.1); color: #b32e2e; border-radius: 10px; padding: 10px 14px; font-size: 0.82rem; margin-bottom: 14px; text-align: center; }

/* ---------- Zaman çizelgesi ---------- */
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--primary-light), var(--accent-color)); border-radius: 2px; }
.tl-item { position: relative; padding: 0 0 18px 12px; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -24px; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary-light);
}
.tl-item.hot::before { border-color: var(--ember); animation: dot-pulse 1.6s infinite; }
.tl-item b { display: block; font-size: 0.88rem; color: var(--primary-dark); }
.tl-item small { color: var(--text-soft); font-size: 0.76rem; }

/* ---------- Gauge / canlı sensör kartı ---------- */
.sensor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.sensor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.sensor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sensor-card.alarm { border-color: rgba(214,69,69,0.5); background: linear-gradient(135deg, #fff, rgba(214,69,69,0.05)); }
.sensor-name { font-size: 0.76rem; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.sensor-value { font-size: 1.7rem; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.02em; transition: color 0.3s; }
.sensor-value small { font-size: 0.85rem; color: var(--text-soft); font-weight: 600; }
.sensor-card.alarm .sensor-value { color: var(--danger); }
.sensor-range { font-size: 0.7rem; color: var(--text-soft); margin-top: 4px; }
.sensor-track { height: 6px; border-radius: 4px; background: #e8ecf3; margin-top: 10px; position: relative; overflow: visible; }
.sensor-track .band { position: absolute; top: 0; bottom: 0; border-radius: 4px; background: rgba(47,158,110,0.25); }
.sensor-track .needle {
  position: absolute;
  top: -3px;
  width: 4px; height: 12px;
  border-radius: 2px;
  background: var(--primary-color);
  transition: left 0.8s cubic-bezier(0.4,0,0.2,1), background 0.3s;
}
.sensor-card.alarm .sensor-track .needle { background: var(--danger); }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-deeper); color: #94a3b8; margin-top: auto; }
.footer-inner { max-width: 1380px; margin: 0 auto; padding: 22px 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: #e2e8f0; font-size: 0.9rem; }
.footer-brand .ico { width: 18px; height: 18px; color: var(--ember-light); }
.footer-brand span { white-space: nowrap; }
.footer-note { font-size: 0.76rem; }
.footer-note b { color: var(--accent-warm); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(6,30,54,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  animation: msg-in 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal h2 { font-size: 1.2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 6px; padding-right: 40px; }
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: #f1f5f9;
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.modal-close:hover { background: rgba(214,69,69,0.12); transform: rotate(90deg); }
.modal-close .ico { width: 16px; height: 16px; }

.dropzone {
  border: 1.5px dashed rgba(26, 54, 93, 0.28);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  background: rgba(26, 54, 93, 0.03);
  margin-bottom: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.dropzone b { display: block; color: var(--primary-dark); font-size: 0.92rem; }
.dropzone small { display: block; color: var(--text-soft); font-size: 0.74rem; margin-top: 4px; }
.dropzone.hot { border-color: var(--accent-color); background: rgba(200, 157, 59, 0.08); }
.drop-name { margin-top: 8px; font-size: 0.78rem; font-weight: 700; color: var(--accent-dark); }

/* ---------- Sayaç ---------- */
.count-up { font-variant-numeric: tabular-nums; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(26,54,93,0.25); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: rgba(26,54,93,0.45); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--primary-deeper);
    padding: 10px 16px 18px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: #cbd5e1; text-decoration: none; padding: 11px 10px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem; font-weight: 600; }
  .mobile-menu a:hover { color: var(--accent-warm); }
  .chat-shell { grid-template-columns: 1fr; }
  .grid-31 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .ai-status { display: none; }
  .brand-text { display: none; }
  .brand-logo-hero { height: 52px; }
  .brand-logo-login { height: 46px; }
  .hero { padding-top: 104px; }
  .landing-bar { padding-top: 14px; }
  .landing-bar .btn-ghost { display: none; }
}

/* ---------- Yol haritası / neler yapılabilir ---------- */
.opp-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  position: sticky;
  top: 76px;
  z-index: 40;
  padding: 10px 0 8px;
  background: linear-gradient(180deg, var(--bg) 70%, transparent);
}
.opp-toc a {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.opp-toc a:hover { border-color: var(--accent-color); background: rgba(200,157,59,0.1); transform: translateY(-1px); }

.opp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.opp-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px 24px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.opp-panel.navy {
  background: var(--accent-gradient-navy);
  border: none;
  color: #e8eef6;
}
.opp-panel h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.opp-panel.navy h3 { color: #fff; }
.opp-panel h3 .ico { width: 20px; height: 20px; color: var(--accent-dark); }
.opp-panel.navy h3 .ico { color: var(--accent-warm); }
.opp-panel p, .opp-panel li { font-size: 0.86rem; line-height: 1.62; }
.opp-panel p { color: var(--text-soft); margin-bottom: 10px; }
.opp-panel.navy p { color: #b8c7dc; }
.opp-panel ul { margin: 0; padding-left: 18px; }
.opp-panel li { margin-bottom: 6px; color: var(--text); }
.opp-panel.navy li { color: #d5e0ee; }
.opp-panel.navy em { font-style: normal; font-weight: 700; color: #f0c75e; }
.navy-mods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}
.navy-mods a {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(240, 199, 94, 0.4);
  color: #f0c75e;
  text-decoration: none;
  background: rgba(240, 199, 94, 0.08);
}
.navy-mods a:hover { background: rgba(240, 199, 94, 0.18); color: #fff; }

.opp-flow {
  background: var(--accent-gradient-navy);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 22px;
  color: #fff;
}
.opp-flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
}
.opp-flow-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(200,157,59,0.35);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}
.opp-flow-arrow { color: var(--accent-warm); font-weight: 800; }
.opp-flow-note { font-size: 0.74rem; color: #9fb2ca; margin-top: 10px; }

.opp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}
.opp-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px 14px;
  background: linear-gradient(135deg, rgba(26,54,93,0.04), rgba(200,157,59,0.06));
  border-bottom: 1px solid var(--line);
}
.opp-card-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.opp-num {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--accent-gradient-navy);
  color: var(--accent-warm);
  font-weight: 800;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.opp-card-title h3 { font-size: 1.08rem; font-weight: 800; color: var(--primary-dark); margin: 0 0 4px; }
.opp-card-title small { color: var(--text-soft); font-size: 0.78rem; display: block; }
.opp-meta { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.opp-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.opp-col { padding: 16px 22px 18px; }
.opp-col + .opp-col { border-left: 1px solid var(--line); }
.opp-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.opp-col.we { background: rgba(26,54,93,0.03); }
.opp-col p { font-size: 0.84rem; color: var(--text); line-height: 1.6; margin: 0; }
.opp-col ul { margin: 0; padding-left: 17px; font-size: 0.84rem; line-height: 1.58; color: var(--text); }
.opp-col li { margin-bottom: 5px; }
.opp-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 22px 14px;
  background: #f8fafc;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-soft);
}
.opp-card-foot b { color: var(--primary-dark); }

.opp-phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.opp-phase {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.opp-phase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent-gradient);
}
.opp-phase.p2::before { background: var(--accent-gradient-gold); }
.opp-phase.p3::before { background: var(--ember-gradient); }
.opp-phase .ph { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 6px; }
.opp-phase h3 { font-size: 1rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.opp-phase p { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 10px; }
.opp-phase ul { margin: 0; padding-left: 17px; font-size: 0.82rem; line-height: 1.55; }
.opp-phase li { margin-bottom: 4px; }

.opp-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.role-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.role-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.role-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.role-table tr:nth-child(even) td { background: rgba(26,54,93,0.03); }
.role-table td:first-child { font-weight: 700; color: var(--primary-dark); width: 28%; }

@media (max-width: 900px) {
  .opp-split, .opp-body, .opp-dont, .opp-phase-grid { grid-template-columns: 1fr; }
  .opp-col + .opp-col { border-left: none; border-top: 1px solid var(--line); }
  .opp-toc { position: static; }
}

/* ---------- Yol haritası: kurgu diyagramları ---------- */
.story-wrap {
  margin: 0 0 28px;
  padding: 26px 24px 22px;
  border-radius: 20px;
  background: var(--accent-gradient-navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.story-wrap::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(200,157,59,0.12);
  pointer-events: none;
}
.story-wrap > * { position: relative; z-index: 1; }
.story-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 8px;
}
.story-wrap h2 {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.story-wrap > p.lead {
  color: #b8c7dc;
  font-size: 0.88rem;
  max-width: 760px;
  margin-bottom: 22px;
  line-height: 1.6;
}
.story-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
}
.story-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px 16px 16px;
  min-height: 100%;
}
.story-step .n {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 10px;
  background: var(--accent-gradient-gold);
  color: var(--primary-dark);
}
.story-step h3 { font-size: 1.02rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.story-step p { font-size: 0.8rem; color: #c5d4e8; line-height: 1.55; margin: 0; }
.story-step ul { margin: 10px 0 0; padding-left: 16px; font-size: 0.78rem; color: #d5e0ee; line-height: 1.5; }
.story-arrow {
  display: flex;
  align-items: center;
  color: var(--accent-warm);
  font-size: 1.4rem;
  font-weight: 800;
  padding-top: 28px;
}

.learn-map {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}
.learn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.learn-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(200,157,59,0.35);
  color: #f1e6c8;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}
.learn-join {
  text-align: center;
  color: var(--accent-warm);
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 8px 0 4px;
  font-weight: 800;
}
.learn-hub {
  margin: 4px auto 0;
  max-width: 420px;
  text-align: center;
  background: var(--accent-gradient-gold);
  color: var(--primary-dark);
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 0.9rem;
}
.learn-hub small { display: block; font-weight: 600; font-size: 0.72rem; opacity: 0.8; margin-top: 2px; }
.learn-units .learn-chip { color: #e8eef6; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }

.pipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 14px;
}
.pipe-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pipe-card .ico { width: 22px; height: 22px; color: var(--accent-dark); margin-bottom: 8px; }
.pipe-card h3 { font-size: 0.98rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 6px; }
.pipe-card p { font-size: 0.8rem; color: var(--text-soft); line-height: 1.55; margin: 0; }
.pipe-card .tag,
.pipe-place .tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.pipe-place {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px 22px;
  box-shadow: var(--shadow-sm);
  margin: 0 0 22px;
  overflow: hidden;
}
.pipe-place h2 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 12px;
}
.pipe-place > p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 12px;
  max-width: 920px;
}
.pipe-place .place-lead { color: var(--text); }
.pipe-place .place-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0 16px;
}
.pipe-place .place-cols h3 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 6px;
}
.pipe-place .place-cols p {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
.pipe-place .place-close {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.kvkk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 18px;
}
.kvkk-split h3 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 8px;
}
.kvkk-split ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.kvkk-split li { margin-bottom: 4px; }
.need-h {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 8px 0 10px;
}
.need-list {
  margin: 0 0 16px;
  padding-left: 20px;
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.6;
}
.need-list li { margin-bottom: 8px; }
.need-list b { color: var(--primary-dark); }

.ops-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px 22px;
  box-shadow: var(--shadow-sm);
  margin: 0 0 28px;
}
.ops-wrap > .tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.ops-wrap > h2 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 10px;
}
.ops-wrap .ops-lead {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 860px;
}
.ops-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ops-card { grid-column: span 2; }
.ops-card:nth-child(4),
.ops-card:nth-child(5) { grid-column: span 3; }
.ops-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  background: #faf8f3;
}
.ops-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.ops-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-gradient-navy);
  flex-shrink: 0;
}
.ops-ico .ico { width: 18px; height: 18px; color: var(--accent-warm); }
.ops-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 2px;
}
.ops-card small { color: var(--text-soft); font-size: 0.72rem; font-weight: 700; }
.ops-card .ops-kicker {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.5;
  margin: 0 0 8px;
}
.ops-card p {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.62;
  margin: 0 0 14px;
}
.ops-card .btn { margin-top: 2px; }

@media (max-width: 900px) {
  .story-steps { grid-template-columns: 1fr; }
  .story-arrow { padding: 0; justify-content: center; transform: rotate(90deg); }
  .pipe-grid { grid-template-columns: 1fr; }
  .pipe-place { padding: 20px 18px 18px; }
  .pipe-place .place-cols, .kvkk-split { grid-template-columns: 1fr; }
  .ops-wrap { padding: 20px 18px 16px; }
  .ops-grid { grid-template-columns: 1fr; }
  .ops-card,
  .ops-card:nth-child(4),
  .ops-card:nth-child(5) { grid-column: auto; }
}

/* ---------- Toplantı kayıt asistanı ---------- */
.meet-tabs { display: flex; gap: 8px; margin: 0 0 16px; }
.meet-tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--primary-color);
  cursor: pointer;
}
.meet-tab.on { background: var(--accent-gradient-navy); color: #fff; border-color: transparent; }
.meet-meta { margin-bottom: 16px; }
.meet-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; }
.meet-live-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.meet-timer { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--primary-dark); font-variant-numeric: tabular-nums; }
.meet-live-bar { display: flex; justify-content: space-between; gap: 12px; font-size: 0.82rem; color: var(--text-soft); margin: 10px 0 14px; }
.meet-live-st[data-tone="live"] { color: #b32e2e; font-weight: 700; }
.meet-live-st[data-tone="warn"] { color: #9c6f14; font-weight: 700; }
.meet-live-st[data-tone="danger"] { color: var(--danger); font-weight: 700; }
.meet-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.meet-drop {
  border: 1.5px dashed var(--line);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
  background: #faf8f3;
}
.meet-drop.over { border-color: var(--accent-color); background: rgba(200,157,59,0.08); }
.meet-prog { height: 6px; background: var(--line); border-radius: 99px; overflow: hidden; margin-top: 12px; }
.meet-prog i { display: block; height: 100%; width: 0; background: var(--accent-gradient-gold); transition: width 0.3s; }
.meet-up-lab { font-size: 0.78rem; color: var(--text-soft); margin-top: 8px; }
.meet-split { display: grid; grid-template-columns: 320px 1fr; gap: 16px; }
.meet-list { display: flex; flex-direction: column; gap: 8px; max-height: 70vh; overflow: auto; }
.meet-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 10px;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.meet-row.on { border-color: var(--accent-color); background: #faf8f3; }
.meet-row-title { font-weight: 800; font-size: 0.86rem; color: var(--primary-dark); }
.meet-row-meta { grid-column: 1; font-size: 0.72rem; color: var(--text-soft); }
.meet-st { grid-row: 1 / span 2; align-self: center; font-size: 0.68rem; font-weight: 800; padding: 3px 8px; border-radius: 99px; background: #eef2f6; }
.meet-st.st-ready { background: rgba(47,158,110,0.12); color: #1c7a52; }
.meet-st.st-error { background: rgba(214,69,69,0.12); color: #b32e2e; }
.meet-st.st-recording, .meet-st.st-transcribing, .meet-st.st-summarizing { background: rgba(200,157,59,0.16); color: #8a6918; }
.meet-empty { color: var(--text-soft); font-size: 0.86rem; padding: 12px 0; }
.meet-detail-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.meet-detail-head h3 { margin: 0 0 4px; }
.meet-detail-head p { margin: 0; color: var(--text-soft); font-size: 0.8rem; }
.meet-detail-acts { display: flex; flex-wrap: wrap; gap: 8px; }
.meet-block { margin-bottom: 16px; }
.meet-block h4 { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 8px; }
.meet-block ul { padding-left: 18px; margin: 0; }
.meet-block li { margin-bottom: 4px; font-size: 0.86rem; }
.meet-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.meet-long, .meet-tr { white-space: pre-wrap; font-size: 0.84rem; line-height: 1.65; }
.meet-tr { background: #f6f7fa; border-radius: 10px; padding: 12px; max-height: 280px; overflow: auto; font-family: inherit; }
.meet-seg { display: grid; grid-template-columns: 56px 1fr; gap: 8px; font-size: 0.8rem; padding: 6px 0; border-bottom: 1px solid var(--line); }
.meet-seg span { color: var(--text-soft); font-variant-numeric: tabular-nums; }
.meet-err { color: #b32e2e; font-weight: 700; font-size: 0.86rem; }
.meet-fine { font-size: 0.74rem; color: var(--text-soft); margin-top: 16px; }
.meet-process {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 80;
  background: var(--accent-gradient-navy);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
}
.meet-process span { display: block; font-size: 0.8rem; color: #c5d4e8; margin: 4px 0 8px; }
.meet-process .meet-prog { background: rgba(255,255,255,0.15); }
.meet-chat-card { max-width: 860px; }
.meet-chat-scope {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin: 12px 0 16px;
  font-size: 0.86rem;
}
.meet-chat-scope label { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--primary-dark); cursor: pointer; }
.meet-chat-cur { color: var(--text-soft); font-size: 0.78rem; }
.meet-chat-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  max-height: 48vh;
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  margin-bottom: 12px;
}
.meet-chat-log .msg { max-width: 88%; }
.meet-chat-row { display: flex; gap: 10px; margin-bottom: 12px; }
.meet-chat-row input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
}
.meet-chat-row input:focus { border-color: var(--accent-color); box-shadow: 0 0 0 4px rgba(200,157,59,0.12); }
.meet-bank { display: inline-block; margin-left: 8px; font-size: 0.68rem; font-weight: 800; color: #1c7a52; background: rgba(47,158,110,0.12); padding: 2px 8px; border-radius: 99px; vertical-align: middle; }
.meet-src-h { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-dark); margin: 14px 0 8px; }
.meet-src { display: flex; flex-direction: column; gap: 2px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 6px; background: #fff; }
.meet-src b { font-size: 0.8rem; color: var(--primary-dark); }
.meet-src span { font-size: 0.74rem; color: var(--text-soft); }
@media (max-width: 900px) {
  .meet-grid, .meet-split, .meet-cols { grid-template-columns: 1fr; }
}

.ai-result.energy-note { white-space: normal; }
.energy-reco { margin: 10px 0 14px; padding-left: 18px; }
.energy-reco li { margin-bottom: 6px; font-size: 0.86rem; }
.sim-out { text-align: center; padding: 8px 0 12px; }
.sim-kicker { font-size: 0.8rem; color: var(--text-soft); font-weight: 700; }
.sim-big {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--accent-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 4px 0;
}
.sim-gross { font-size: 0.82rem; color: var(--text-soft); }
.sim-assump { font-size: 0.75rem; color: var(--text-soft); margin: 10px 0 0; line-height: 1.45; }
.sim-note {
  background: #f4f6f9;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
}
