:root {
  --brand: #fd9644;
  --brand-600: #e68330;
}

/* Navbar */
.navbar {
    background-color: #fff!important;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fd9644!important;
}

.navbar ul {
    list-style: none!important;
    display: flex!important;
    align-items: center!important;
    margin: 0;
}

.navbar ul li {
    margin: 0 1rem!important;
}

.navbar ul li a {
    font-weight: 500!important;
    color: #333!important;
    transition: color 0.3s!important;
}

.navbar ul li a:hover {
    color: #fd9644!important;
}

.navbar .btn {
    background-color: #fd9644!important;
    color: #fff!important;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold!important;
    transition: background-color 0.3s!important;
}

.navbar .btn:hover {
    background-color: #e86c10!important;
}


.section-pad { padding: 72px 0; }

.feature-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0f172a;
}
.feature-hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.35), rgba(179,123,17,0.36));
}
.feature-hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -9999; filter: saturate(1.05) contrast(1.05);
}

.feature-subnav {
  position: sticky; top: 0; z-index: 1020;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.feature-subnav a {
  display: inline-block; padding: 12px 16px; color: #333; font-weight: 500;
}
.feature-subnav a:hover { color: var(--brand); }

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  gap: 16px; align-items: center;
}
.flow-card {
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px; padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.flow-card .step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 700; margin-bottom: 8px;
}
.flow-connector {
  height: 2px; background: linear-gradient(90deg, var(--brand), var(--brand-600));
  border-radius: 2px;
}
@media (max-width: 768px) {
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .flow-connector { display: none; }
}

.fade-up { opacity: 0; transform: translateY(16px); animation: fadeUp .8s ease forwards; }
.fade-up:nth-child(1) { animation-delay: .1s; }
.fade-up:nth-child(3) { animation-delay: .2s; }
.fade-up:nth-child(5) { animation-delay: .3s; }
.fade-up:nth-child(7) { animation-delay: .4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.showcase { background: #f8f9fa; }
.showcase-item {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid rgba(0,0,0,.06);
}
.showcase-item.right { grid-template-columns: 1fr 1.2fr; }
.showcase-item .text h3 { margin-bottom: 8px; }
.showcase-item img {
  width: 100%; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
@media (max-width: 992px) {
  .showcase-item, .showcase-item.right { grid-template-columns: 1fr; }
}

.analytics-hero {
  position: relative; padding: 96px 0; background: #0f172a; overflow: hidden;
}
.analytics-hero .overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 200px at 15% 10%, rgba(253,150,68,.18), transparent 60%),
    radial-gradient(600px 200px at 85% 90%, rgba(253,150,68,.15), transparent 60%);
  pointer-events: none;
}
