:root {
  --primary: #0d6efd;
  --primary-dark: #0b5ed7;
  --accent: #6610f2;
  --ink: #0f172a;
  --muted: #5b6270;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --border: #dfe4f5;
  --success: #0cbc87;
  --warning: #f59f00;

  --bs-body-font-family: "Montserrat", system-ui, -apple-system, "Segoe UI",
                         Roboto, "Helvetica Neue", Arial, "Noto Sans",
                         "Liberation Sans", sans-serif;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--bs-body-font-family);
  scroll-behavior: smooth;
}

a {
  color: var(--primary);
}

body, p, li, td, th, small, label {
  color: var(--text);
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.22);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: rgba(13, 110, 253, 0.08);
  --bs-btn-hover-border-color: var(--primary);
}

.py-6 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.border-dashed {
  border: 2px dashed #dce3f1;
}

.bg-soft {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 920px);
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(13,110,253,0.18), transparent 65%),
    radial-gradient(780px 520px at 82% -10%, rgba(13,202,240,0.18), transparent 70%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%);
  isolation: isolate;
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1150px 620px at 24% 48%,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.75) 40%,
      rgba(255,255,255,0.25) 68%,
      rgba(255,255,255,0.00) 100%);
  content: "";
  display: block;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero .hero-underline {
  position: relative;
  z-index: 1;
}

.hero .hero-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 0.45em;
  background: rgba(13,110,253,0.16);
  border-radius: 6px;
  z-index: -1;
}

.hero-copy {
  max-width: 520px;
}

.hero-showcase {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.hero-dashboard {
  border-radius: 1.5rem;
  border: 1px solid #dce5ff;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 60px rgba(13,110,253,0.16);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-dashboard-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(13,110,253,0.12);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-dashboard-date {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-dashboard-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(13,110,253,0.08), rgba(255,255,255,0.85));
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-dashboard-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13,110,253,0.14);
}

.hero-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(13,110,253,0.2);
}

.hero-dashboard-copy strong {
  display: block;
  font-size: 1rem;
}

.hero-dashboard-copy small {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-insight {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid #dde4f8;
  box-shadow: 0 20px 48px rgba(13,110,253,0.16);
  margin-top: -1.5rem;
  margin-left: auto;
  width: min(100%, 380px);
}

.hero-insight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13,110,253,0.12);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(13,110,253,0.25);
  opacity: 0.8;
  animation: floatSoft 10s ease-in-out infinite;
}

.hero-orbit-1 {
  width: 220px;
  height: 220px;
  top: -40px;
  right: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(13,110,253,0.28), transparent 65%);
}

.hero-orbit-2 {
  width: 180px;
  height: 180px;
  bottom: 40px;
  right: -30px;
  animation-delay: 1.6s;
  background: radial-gradient(circle at 65% 35%, rgba(13,202,240,0.3), transparent 70%);
}

.hero-pill {
  position: absolute;
  left: -20px;
  bottom: -36px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(13,110,253,0.18);
}

.hero-pill img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
}

.hero-pill span {
  font-weight: 600;
  color: var(--primary);
}

.metric {
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(13,110,253,0.08);
}

.section-intro {
  max-width: 520px;
}

.impact-grid {
  display: grid;
  gap: 1.5rem;
}

.impact-card {
  border-radius: 1.5rem;
  padding: 1.8rem;
  box-shadow: 0 28px 60px rgba(13,110,253,0.14);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 72px rgba(13,110,253,0.2);
}

.impact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.22);
  font-size: 1.4rem;
}

.impact-card.accent-blue {
  background: linear-gradient(150deg, #0d6efd 0%, #1f58ff 100%);
}

.impact-card.accent-purple {
  background: linear-gradient(150deg, #1b6dff 0%, #0f3fbf 100%);
}

.impact-card.accent-green {
  background: linear-gradient(150deg, #0aa1ff 0%, #0451d6 100%);
}

.feature-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13,110,253,0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-line p {
  font-size: 0.95rem;
  color: var(--muted);
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: rgba(13,110,253,0.1);
  box-shadow: 0 12px 36px rgba(13,110,253,0.16);
}

.step-card {
  background: #fff;
  border: 1px solid #e9edf6;
  border-radius: 1.25rem;
  padding: 1.25rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13,110,253,0.08);
}

.step-index {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(13,110,253,0.25);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(13,110,253,0.08);
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.upload-box {
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.upload-box:hover {
  box-shadow: 0 16px 36px rgba(13,110,253,0.08);
  transform: translateY(-2px);
}

.feature-card {
  background: #fff;
  border: 1px solid #e9edf6;
  border-radius: 1.25rem;
  box-shadow: 0 10px 26px rgba(13,110,253,0.06);
}

.table-primary th {
  color: #052c65;
}

.rank-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.4rem;
}

.progress {
  background: #eef2fb;
}

.progress-bar {
  background: var(--primary);
}

.demo-media {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13,110,253,0.16);
}

.demo-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-media-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 14px 32px rgba(13,110,253,0.14);
  backdrop-filter: blur(8px);
}

.info-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.info-line i {
  font-size: 1.1rem;
  line-height: 1.5;
}

.benefit {
  background: #fff;
  border: 1px solid #e9edf6;
  border-radius: 1.25rem;
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(13,110,253,0.08);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(13,110,253,0.08);
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.case-card {
  position: relative;
  border-radius: 1.5rem;
  min-height: 260px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 28px 60px rgba(13,110,253,0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(13,110,253,0.24);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(4,26,71,0.82) 0%, rgba(13,110,253,0.62) 100%);
  mix-blend-mode: multiply;
}

.case-card.accent-blue {
  background: linear-gradient(150deg, #0d6efd 0%, #1f58ff 100%);
}

.case-card.accent-purple {
  background: linear-gradient(150deg, #1b6dff 0%, #0f3fbf 100%);
}

.case-card.accent-green {
  background: linear-gradient(150deg, #0aa1ff 0%, #0451d6 100%);
}

.case-card-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.case-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.case-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.price-card {
  background: #fff;
  border: 1px solid #e9edf6;
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13,110,253,0.08);
}

.price-card.featured {
  border-color: rgba(13,110,253,0.45);
  box-shadow: 0 18px 50px rgba(13,110,253,0.12);
  position: relative;
}

.price-card .ribbon {
  position: absolute;
  top: 14px;
  right: -38px;
  background: var(--primary);
  color: #fff;
  padding: 6px 50px;
  transform: rotate(35deg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.contact-card {
  background: #fff;
  border: 1px solid #e9edf6;
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(13,110,253,0.08);
}

.map-placeholder {
  background: #fff;
  border: 1px solid #e9edf6;
  border-radius: 1.25rem;
  box-shadow: 0 16px 40px rgba(13,110,253,0.08);
}

/* =========================
   DEMO PAGE
   ========================= */
.demo-hero {
  background:
    radial-gradient(950px 520px at 20% 20%, rgba(13,110,253,0.18), transparent 68%),
    radial-gradient(720px 420px at 80% -10%, rgba(108,117,214,0.18), transparent 70%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 45%);
}

.demo-sidecard {
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid #dce5ff;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 20px 50px rgba(13,110,253,0.14);
  backdrop-filter: blur(8px);
}

.demo-sidecard-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(13,110,253,0.12);
  color: var(--primary);
  font-size: 1.3rem;
}

.demo-upload-card {
  background: #fff;
  border: 1px solid #dfe5f9;
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: 0 26px 60px rgba(13,110,253,0.12);
}

.demo-dropzone {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  border: 2px dashed rgba(13,110,253,0.25);
  background: rgba(13,110,253,0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.demo-dropzone:hover {
  border-color: rgba(13,110,253,0.55);
  background: rgba(13,110,253,0.08);
  transform: translateY(-2px);
}

.demo-dropzone-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(13,110,253,0.12);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.demo-meta {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid #e2e8fb;
  background: rgba(13,110,253,0.04);
}

.demo-meta-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.25rem;
}

.demo-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0f5132;
  background: rgba(25,135,84,0.12);
}

.demo-summary-card {
  background: #fff;
  border: 1px solid #dfe5f9;
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: 0 26px 60px rgba(13,110,253,0.12);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.demo-summary-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(13,110,253,0.12);
  color: var(--primary);
  font-size: 1.3rem;
}

.demo-summary-list {
  border-radius: 1.25rem;
  border: 1px dashed #d7def2;
  background: rgba(13,110,253,0.03);
  padding: 1.2rem;
  max-height: 260px;
  overflow-y: auto;
}

.demo-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 24px rgba(13,110,253,0.08);
  margin-bottom: 0.75rem;
}

.demo-summary-item:last-child {
  margin-bottom: 0;
}

.demo-summary-main {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.demo-summary-main i {
  font-size: 1.35rem;
}

.demo-summary-main strong {
  display: block;
  font-size: 0.92rem;
}

.demo-summary-main small {
  color: var(--muted);
  font-size: 0.78rem;
}

.demo-summary-actions .btn-lg {
  box-shadow: 0 16px 40px rgba(13,110,253,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-summary-actions .btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(13,110,253,0.28);
}

.demo-process .process-card {
  border-radius: 1.5rem;
  border: 1px solid #e1e7fb;
  background: rgba(255,255,255,0.92);
  padding: 1.8rem;
  box-shadow: 0 18px 44px rgba(13,110,253,0.12);
  height: 100%;
}

.process-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(13,110,253,0.12);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.demo-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: #198754;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 20px 60px rgba(25,135,84,0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1080;
}

.demo-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-summary-list::-webkit-scrollbar {
  width: 6px;
}

.demo-summary-list::-webkit-scrollbar-thumb {
  background: rgba(13,110,253,0.2);
  border-radius: 999px;
}

.demo-summary-list::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 991.98px) {
  .demo-upload-card,
  .demo-summary-card {
    border-radius: 1.5rem;
    padding: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .demo-dropzone {
    padding: 2.5rem 1.5rem;
  }
  .demo-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .demo-summary-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .demo-summary-actions .btn-lg {
    font-size: 1rem;
  }
  .demo-toast {
    left: 50%;
    right: auto;
    transform: translate(-50%, 12px);
  }
  .demo-toast.visible {
    transform: translate(-50%, 0);
  }
}

/* =========================
   LOGIN PAGE
   ========================= */
.login-page {
  background:
    radial-gradient(1200px 680px at 10% 10%, rgba(13,110,253,0.16), transparent 70%),
    radial-gradient(820px 520px at 85% 15%, rgba(12,83,183,0.2), transparent 78%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 50%);
  min-height: 100vh;
}

.login-hero {
  padding-top: clamp(4rem, 8vh, 6rem);
  padding-bottom: clamp(3rem, 6vh, 4rem);
}

.login-copy {
  max-width: 520px;
}

.login-benefits {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.login-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  border-radius: 1.25rem;
  border: 1px solid #dfe5f9;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 40px rgba(13,110,253,0.1);
}

.login-benefit strong {
  display: block;
}

.login-benefit small {
  color: var(--muted);
}

.login-card {
  border-radius: 1.75rem;
  padding: 2.4rem;
  border: 1px solid #dfe5f9;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 36px 80px rgba(13,110,253,0.18);
  backdrop-filter: blur(12px);
}

.login-card-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.login-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(13,110,253,0.12);
  display: grid;
  place-items: center;
  padding: 0.85rem;
  box-shadow: inset 0 0 0 1px rgba(13,110,253,0.18);
}

.login-avatar img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.login-form .form-label {
  font-weight: 600;
  color: var(--primary);
}

.login-input .input-group-text {
  border: none;
  background: rgba(13,110,253,0.1);
  color: var(--primary);
}

.login-input .form-control {
  border: none;
  background: rgba(13,110,253,0.05);
  padding: 0.85rem 1rem;
}

.login-input .form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(13,110,253,0.25);
}

.login-input .btn-link {
  color: var(--muted);
  text-decoration: none;
}

.login-input .btn-link:hover {
  color: var(--primary);
}

.login-btn {
  padding: 0.85rem 1rem;
  font-weight: 600;
  box-shadow: 0 24px 60px rgba(13,110,253,0.2);
}

.login-btn:hover {
  box-shadow: 0 28px 72px rgba(13,110,253,0.24);
  transform: translateY(-1px);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.2rem 0;
  color: var(--muted);
}

.login-divider-line {
  flex: 1 1 auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13,110,253,0), rgba(13,110,253,0.18), rgba(13,110,253,0));
}

.login-divider-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 24px rgba(13,110,253,0.12);
  font-weight: 600;
  color: var(--primary);
}

.login-providers {
  display: grid;
  gap: 0.75rem;
}

.login-providers .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
}

.login-providers .btn:hover {
  border-color: rgba(13,110,253,0.45);
  box-shadow: 0 14px 28px rgba(13,110,253,0.16);
}

.login-footer a {
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .login-card {
    margin-top: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .login-benefits {
    grid-template-columns: 1fr;
  }
  .login-card {
    padding: 1.75rem;
  }
  .login-providers {
    grid-template-columns: 1fr;
  }
}

.navbar .nav-link {
  color: var(--text);
}

.navbar .nav-link:hover {
  color: var(--primary);
}

.link-primary {
  color: var(--primary) !important;
}

.link-primary:hover {
  text-decoration: underline !important;
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.9s cubic-bezier(0.21,0.61,0.35,1) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 991.98px) {
  .hero-showcase {
    margin: 0 auto;
  }
  .hero-insight {
    margin: 1.5rem auto 0;
  }
  .hero-pill {
    position: relative;
    left: 0;
    bottom: 0;
    margin: 1.5rem auto 0;
  }
  .hero-orbit {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-dashboard {
    padding: 1.2rem;
  }
  .hero-dashboard-item {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
  }
  .hero-tag {
    justify-self: start;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.upload-file-list {
  min-height: 72px;
  background: rgba(15, 23, 42, 0.035);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1rem;
  padding: 1.25rem;
}

.upload-file-item {
  min-width: 0;
  background: #ffffff;
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 0.8rem 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.upload-file-item .badge {
  background: rgba(13, 110, 253, 0.12) !important;
  color: var(--primary);
  border-color: transparent;
}

.upload-feedback {
  font-weight: 500;
}

.upload-highlights {
  border-radius: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.upload-feature {
  align-items: flex-start;
}

.upload-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}


.upload-steps {
  margin-top: 0.5rem;
}

.upload-step-item {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  flex-wrap: wrap;
  align-items: flex-start;
}


.upload-step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.upload-step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(13, 110, 253, 0.35);
}

@media (max-width: 991.98px) {
  .demo-hero {
    padding-top: 6rem;
    padding-bottom: 4.5rem;
  }

  .upload-dropzone {
    padding: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .upload-card {
    padding: 2.5rem 1.75rem;
  }

  .upload-dropzone {
    padding: 2rem 1.5rem;
  }

  .upload-feature {
    flex-direction: row;
  }
}

