*{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",
  Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

:root{
  --primary:#ff963a;
  /* --primary:#ff6a3d; */
  --dark:#0f172a;
  --muted:#64748b;
  --soft:#f8fafc;
}

body.light{background:var(--soft);color:var(--dark)}
body.dark{background:#020617;color:#e5e7eb}

section{padding:110px 0}
.header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.brand-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}


.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* LEFT */
.header-left {
  padding-left: 6px;
}

.header-center {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.header-center li {
  list-style: none;
  margin: 0;
  padding: 0;
}


.header-center li a {
  text-decoration: none;
  font-weight: 500;
  color: #0f172a;
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}

/* HOVER UNDERLINE */
.header-center li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .25s ease;
}

.header-center li a:hover {
  color: var(--primary);
}

.header-center li a:hover::after {
  width: 100%;
}

/* RIGHT AUTH */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-auth {
  text-decoration: none;
  font-weight: 500;
  color: #0f172a;
  transition: color .25s ease;
}

.nav-auth.login:hover {
  color: var(--primary);
}

.nav-auth.register {
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  transition: background .25s ease;
}

.nav-auth.register:hover {
  background: #e85a30;
}

/* MOBILE TOGGLE */
.mobile-toggle {
  font-size: 22px;
  cursor: pointer;
}


/* HERO WRAPPER */
.hero-wrapper{
  background:#fcfcfd; /* IMAGE JAISE OFF-WHITE */
  padding-top:120px; /* navbar ke niche controlled gap */
  padding-bottom:0 !important;
}

/* HERO CONTENT */
.hero-content{
  padding-bottom:60px;
}

.hero-content h1{
  font-size:56px;
  font-weight:800;
  color:#0f172a;
}

.hero-content span{
  color:#ff6a3d;
}

.hero-content p{
  max-width:640px;
  margin:20px auto;
  color:#64748b;
  font-size:18px;
}

.hero-buttons{
  margin-top:32px;
}

/* BADGE */
.badge-soft{
  background:#fff1ec;
  color:#ff6a3d;
  padding:10px 18px;
  border-radius:30px;
  display:inline-block;
  margin-bottom:20px;
}

/* HERO DASHBOARD (3rd LAYER) */
.hero-dashboard{
  padding-bottom:100px;
}

.hero-dashboard img{
  max-width:92%;
  border-radius:18px;
  box-shadow:0 40px 120px rgba(15,23,42,.18);
  background:#ffffff;
}

.stats{
  background:#ffffff;
  padding:0 !important;
}

.stat-card{
  background:#fff;
  padding:40px 30px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(15,23,42,.08);
}

.stat-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  font-size:20px;
  color:#fff;
}

.stat-icon.orange{background:#ff6a3d;}
.stat-icon.purple{background:#7c3aed;}
.stat-icon.green{background:#22c55e;}

.stat-card h3{
  font-weight:800;
  margin-bottom:6px;
}

.stat-card p{
  color:#64748b;
  font-size:15px;
}


/* DASHBOARD */
.dashboard-card{
  padding:40px;
  border-radius:24px;
  color:#fff;
}
.purple{background:linear-gradient(135deg,#9b5cff,#7c3aed)}
.teal{background:linear-gradient(135deg,#14b8a6,#22c55e)}
.fake-graph{height:120px;background:rgba(255,255,255,.4);border-radius:12px}

/* WORKFLOW */
.ui-card{
  background:#fff;
  padding:40px;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(15,23,42,.08);
}

/* INTEGRATIONS */
.logo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
  gap:20px;
  margin-top:40px;
}
.logo-grid span{
  background:#fff;
  padding:20px;
  border-radius:14px;
}

/* FOOTER */
.footer{background:#020617;color:#cbd5e1;padding:60px 0}
.footer-top{display:flex;justify-content:space-between}
.social-icons i{margin-right:12px}
/* SALES FUNNEL SECTION */
.sales-funnel{
  padding:120px 0;
  background:#f8fafc;
}

/* LEFT CARD */
.sales-card{
  background:linear-gradient(135deg,#c084fc,#a855f7);
  border-radius:28px;
  padding:28px;
  color:#fff;
  max-width:420px;
}

/* HEADER */
.sales-card-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,.25);
  padding:10px 14px;
  border-radius:14px;
  font-size:14px;
}

/* GAUGE */
.gauge{
  width:220px;
  height:110px;
  background:#f1f5f9;
  border-radius:220px 220px 0 0;
  margin:40px auto 20px;
  position:relative;
  overflow:hidden;
}

.gauge-fill{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:70%;
  background:linear-gradient(90deg,#fb7185,#facc15,#4ade80);
}

.gauge-center{
  position:absolute;
  bottom:-30px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  color:#0f172a;
  padding:12px 18px;
  border-radius:14px;
  text-align:center;
}

.gauge-center h4{
  margin:0;
  font-weight:800;
}

.gauge-center p{
  font-size:12px;
  margin:0;
  color:#64748b;
}

/* NOTE */
.sales-note{
  text-align:center;
  font-size:13px;
  opacity:.9;
}

/* RIGHT CONTENT */
.sales-funnel h2{
  font-weight:800;
  margin-bottom:16px;
}

.funnel-text{
  color:#64748b;
  max-width:480px;
}

/* BULLETS */
.funnel-list{
  list-style:none;
  padding:0;
  margin-top:24px;
}

.funnel-list li{
  display:flex;
  align-items:center;
  margin-bottom:14px;
  font-size:15px;
}

.funnel-list li span{
  width:10px;
  height:10px;
  background:#ff6a3d;
  border-radius:50%;
  margin-right:12px;
}
/* TRANSACTIONS SECTION */
.transactions{
  padding:120px 0;
  background:#f8fafc;
}

.transactions h2{
  font-weight:800;
  line-height:1.2;
}

.transactions h2 span{
  color:#94a3b8;
}

.trans-text{
  color:#64748b;
  max-width:420px;
  margin:16px 0 28px;
}

/* LEFT FEATURES */
.trans-features{
  list-style:none;
  padding:0;
  max-width:360px;
}

.trans-features li{
  display:flex;
  align-items:center;
  padding:14px 16px;
  border-radius:14px;
  background:#fff;
  margin-bottom:14px;
  box-shadow:0 10px 30px rgba(15,23,42,.08);
  font-size:15px;
}

.trans-features li.active span{
  width:10px;
  height:10px;
  background:#ff6a3d;
  border-radius:50%;
  margin-right:12px;
}

.trans-features li i{
  margin-right:12px;
  color:#64748b;
}

/* RIGHT CARD */
.trans-card{
  background:linear-gradient(135deg,#2dd4bf,#14b8a6);
  border-radius:26px;
  padding:24px;
  max-width:420px;
  margin-left:auto;
}

/* HEADER */
.trans-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,.25);
  padding:10px 14px;
  border-radius:14px;
  color:#fff;
  font-size:14px;
  margin-bottom:16px;
}

/* LIST */
.trans-list{
  list-style:none;
  padding:0;
  margin:0;
}

.trans-list li{
  background:#fff;
  border-radius:14px;
  padding:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
}

/* USER */
.user{
  display:flex;
  align-items:center;
  gap:10px;
}

.user img{
  width:36px;
  height:36px;
  border-radius:50%;
}

.user strong{
  font-size:14px;
  display:block;
}

.user small{
  font-size:12px;
  color:#64748b;
}

/* AMOUNT */
.amount{
  font-weight:700;
  color:#0f172a;
}
/* WORKFLOW SECTION */
.workflow{
  padding:120px 0;
  background:#f8fafc;
}

.workflow h2{
  font-weight:800;
}

.workflow-text{
  color:#64748b;
  max-width:520px;
  margin:12px auto 0;
}

/* CARD */
.workflow-card{
  background:#fff;
  padding:24px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(15,23,42,.08);
  height:100%;
}

.workflow-card h6{
  font-weight:600;
  margin-bottom:16px;
}

/* AVATARS */
.avatars{
  display:flex;
  align-items:center;
  gap:6px;
}

.avatars img{
  width:28px;
  height:28px;
  border-radius:50%;
}

.avatars span{
  font-size:12px;
  color:#64748b;
}

/* BARS */
.bars{
  display:flex;
  gap:6px;
  height:60px;
  align-items:flex-end;
}

.bars span{
  width:10px;
  background:#ff6a3d;
  border-radius:4px;
}
.bars span:nth-child(2){height:40px}
.bars span:nth-child(3){height:55px}
.bars span:nth-child(4){height:30px}

/* EXPENSE */
.workflow-card strong{
  font-size:22px;
}

.down{
  color:#ef4444;
  font-size:13px;
}

/* SUMMARY */
.summary{
  display:flex;
  justify-content:space-between;
}

.summary span{
  font-size:13px;
  color:#64748b;
}

/* GRAPHS */
.mini-graph{
  height:70px;
  background:linear-gradient(135deg,#fdba74,#fb7185);
  border-radius:12px;
  margin:10px 0;
}

.big-graph{
  height:120px;
  background:linear-gradient(135deg,#fde68a,#fca5a5);
  border-radius:14px;
}

.workflow-card.large{
  padding:30px;
}
/* INTEGRATIONS */
.integrations-section {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 50px;
}
.integrations-section {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
}

.section-subtitle {
  color: #6b7280;
  margin-bottom: 50px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
  max-width: 900px;
  margin: auto;
}

.tool-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.tool-card i {
  font-size: 28px;
  color: #ff6a3d;
}

.tool-card span {
  font-weight: 600;
  font-size: 14px;
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}


/* CTA */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff5f1, #ffffff);
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-subtitle {
  color: #6b7280;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #ff6a3d;
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: #e85a30;
}

.btn-outline-custom {
  border: 2px solid #ff6a3d;
  color: #ff6a3d;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: #ff6a3d;
  color: #fff;
}
.footer {
  background: #ffffff;
  padding: 80px 0 30px;
  border-top: 1px solid #f1f1f1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.footer-brand .logo {
  color: #ff6a3d;
  font-size: 22px;
}

.footer-col h6 {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-col a {
  display: block;
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #111827;
}

.social-icons {
  display: flex;
  gap: 14px;
}
.footer h6 ,
.footer-social i{
    color: black;
}
.social-icons i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.social-icons i:hover {
  background: #ff6a3d;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #f1f1f1;
  padding-top: 18px;
  font-size: 13px;
  color: #9ca3af;
  text-align: right;
}
/* MOBILE MENU */
.mobile-toggle {
  font-size: 22px;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 290px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 2000;
  padding: 24px;
  transition: transform 0.35s ease;
  box-shadow: -12px 0 40px rgba(15,23,42,.18);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu.active {
  right: 0;
}

/* HEADER */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.mobile-menu-header .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: #ff6a3d;
  border-radius: 50%;
}

.close-menu {
  font-size: 20px;
  cursor: pointer;
}
/* MOBILE MENU GLASS EFFECT */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 290px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 2000;
  padding: 24px;
  transition: 0.35s ease;
  box-shadow: -20px 0 60px rgba(15,23,42,.18);
}

.mobile-menu.active {
  right: 0;
}

/* HEADER */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

/* NAV */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s;
}

.mobile-nav li i {
  font-size: 16px;
  color: #ff6a3d;
}

.mobile-nav li:hover {
  background: rgba(255, 255, 255, 0.65);
}

/* AUTH STYLES */
.mobile-nav li.auth {
  margin-top: 8px;
}

.mobile-nav li.register {
  background: rgba(255, 106, 61, 0.12);
}

.mobile-nav li.register i {
  color: #ff6a3d;
}

.mobile-nav li.register:hover {
  background: rgba(255, 106, 61, 0.18);
}

/* Responsive */
@media (max-width: 992px) {
  
}

/* MOBILE */
@media(max-width:768px){

  h1{font-size:38px}

  .hero-dashboard img{
    max-width:100%;
  }

  .stats .row > div{
    margin-bottom:20px;
  }

  .sales-card,
  .trans-card{
    max-width:100%;
    margin:auto;
  }

  .integration-grid{
    grid-template-columns:repeat(2,1fr);
  }

 /* MOBILE FOOTER FIX */
@media (max-width: 768px) {

  .footer {
    padding: 50px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  /* BRAND */
  .footer-brand .brand {
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
  }

  /* SECTION HEADINGS */
  .footer-col h6 {
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #0f172a;
  }

  /* LINKS */
  .footer-col a {
    font-size: 15px;
    margin-bottom: 8px;
  }

  /* SOCIAL */
  .footer-social {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-social i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* COPYRIGHT (already good, just center spacing) */
  .footer-bottom {
    margin-top: 30px;
    padding-top: 16px;
    text-align: center;
    font-size: 12px;
  }
}

}
