  :root {
    --purple: #2EC4B6;
    --purple-dark: #26A99D;
    --purple-darker: #1E8B81;
    --purple-light: #E4FAF8;
    --purple-pale: #F2FDFC;
    --navy: #17203A;
    --navy-light: #252D46;
    --bg-soft: #F8FAFC;
    --text-main: #1E1B2E;
    --text-muted: #6B7280;
    --text-soft: #9094A6;
    --border-soft: #ECE9F5;
    --shadow-soft: 0 20px 45px rgba(46, 196, 182, 0.15);
    --shadow-card: 0 4px 18px rgba(30, 27, 46, 0.05);
    --teal: #2EC4B6;
    --teal-dark: #26A99D;
    --navy-soft: #1E2A4A;
    --bg-page: #EAF6F4;
    
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
  }

  a {
    text-decoration: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .container-narrow {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===== TOP BAR ===== */
  .top-bar {
    background: var(--purple);
    color: #fff;
    padding: 15px 0;
    font-size: 0.82rem;
  }

  .top-bar .container-narrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .top-bar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }


  .top-bar-left i {
    font-size: 0.78rem;
    opacity: .9;
    flex-shrink: 0;
  }

  .top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
  }

  .top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  .top-bar-right a {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    opacity: .95;
    transition: opacity .2s ease;
  }

  .top-bar-right a:hover {
    opacity: .7;
  }

  @media (max-width: 767px) {
    .top-bar {
      font-size: 0.72rem;
      padding: 7px 0;
    }

    .top-bar .container-narrow {
      justify-content: center;
      text-align: center;
    }

    .top-bar-left {
      gap: 12px;
      justify-content: center;
    }

    .top-bar-right {
      gap: 12px;
    }
  }

  @media (max-width: 480px) {
    .top-bar {
      font-size: 0.66rem;
    }

    .top-bar-left {
      gap: 9px;
    }

    .top-bar-left i {
      font-size: 0.68rem;
    }

    .top-bar-right {
      gap: 9px;
    }

    .top-bar-divider {
      height: 11px;
    }
  }

  /* ===== NAVBAR ===== */
  .navbar-custom {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #17213D;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    padding: 14px 0;
  }

  .navbar-custom .logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
  }

  .navbar-custom .logo .logo-icon img {
    width: 130px;
    height: 50px;
    /* background: var(--purple); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links a {
    color: #ffff;
    font-weight: 500;
    font-size: 0.92rem;
    margin: 0 16px;
    transition: color .2s ease;
  }

  .nav-links a:hover {
    color: var(--purple);
  }

  .btn-login {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.92rem;
    margin-right: 18px;
  }

  .btn-purple {
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .btn-purple:hover {
    background: var(--purple-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(46, 196, 182, 0.35);
  }

  .btn-outline-soft {
    background: #fff;
    color: var(--text-main);
    border: 1px solid #E2DFEE;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .btn-outline-soft:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
  }

  .navbar-custom .btn-purple {
    padding: 9px 18px;
    font-size: 0.85rem;
  }

  .navbar-toggler-custom {
    background: none;
    border: 1px solid #E2DFEE;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 1.05rem;
    margin-left: 12px;
    cursor: pointer;
    transition: all .2s ease;
  }

  .navbar-toggler-custom:hover {
    border-color: var(--purple);
    color: var(--purple);
  }

  .navbar-toggler-custom.active {
    background: var(--purple);
    margin-bottom: 2px;
    color: #fff;
    border-color: var(--purple);
  }

  .mobile-nav-panel {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height .32s ease, border-color .32s ease;
    display: flex;
    flex-direction: column;
    padding: 0 24px;
  }

  .mobile-nav-panel.open {
    max-height: 420px;
    border-top: 1px solid var(--border-soft);
    padding: 18px 24px 22px;
  }

  .mobile-nav-panel a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 12px 4px;
    border-bottom: 1px solid var(--border-soft);
  }

  .mobile-nav-panel a:last-of-type {
    border-bottom: none;
  }

  .mobile-nav-panel hr {
    border-color: var(--border-soft);
    margin: 4px 0 10px;
  }

  .mobile-nav-panel .mobile-login-link {
    border: 1px solid #E2DFEE;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
  }

  .mobile-nav-panel .btn-purple {
    padding: 12px;
  }

  /* ===== HERO ===== */
  .hero {
    background:
      radial-gradient(700px 320px at 85% -10%, rgba(46, 196, 182, 0.10), transparent 60%),
      linear-gradient(180deg, #FCFBFF 0%, #F8FAFC 100%);
    padding: 84px 0 50px;
    overflow: hidden;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--purple-light);
    color: var(--purple);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .01em;
  }

  .hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    color: var(--text-main);
  }

  .hero h1 span {
    color: var(--purple);
  }

  .hero p.lead-text {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 30px;
    line-height: 1.65;
  }

  .hero-cta-note {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-top: 16px;
  }

  .hero-cta-note i {
    color: var(--purple);
    margin-right: 5px;
  }

  .hero-cta-note span {
    margin-right: 16px;
  }

  /* Dashboard mock */
  .dashboard-mock {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    padding: 12px;
    position: relative;
  }

  .dashboard-mock .mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding: 0 4px;
  }

  .dashboard-mock .mock-header .dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E5E1F5;
    margin-right: 5px;
  }

  .mock-kpi-row {
    display: flex;
    gap:2px;
    margin-bottom: 14px;
  }

  .mock-kpi {
    flex: 1;
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 10px 12px;
  }

  .mock-kpi .k-lbl {
    font-size: 0.65rem;
    color: var(--text-soft);
    margin-bottom: 4px;
  }

  .mock-kpi .k-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
  }

  .mock-kpi .k-val.green {
    color: #16A34A;
  }

  .mock-chart-box {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 14px;
    height: 140px;
  }

  .mock-chart-box .chart-lbl {
    font-size: 0.68rem;
    color: var(--text-soft);
    margin-bottom: 6px;
  }

  .mock-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 2px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.78rem;
  }

  .mock-list-row:last-child {
    border-bottom: none;
  }

  .mock-list-row .addr {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mock-list-row .avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--purple-light);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
  }

  .mock-badge {
    font-size: 0.66rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
  }

  .mock-badge.green {
    background: #DCFCE7;
    color: #16A34A;
  }

  .mock-badge.blue {
    background: #E4FAF8;
    color: var(--purple);
  }

  .mock-badge.amber {
    background: #FEF3C7;
    color: #D97706;
  }

  .float-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    position: absolute;
    box-shadow: 0 14px 30px rgba(30, 27, 46, 0.12);
    border: 1px solid var(--border-soft);
    min-width: 100px;
  }

  .float-stat-card.top-right {
    top: -18px;
    right: 20px;
  }

  .float-stat-card.bottom-right {
    bottom: -18px;
    right: 30px;
  }

  .float-stat-card .num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
  }

  .float-stat-card .lbl {
    font-size: 0.68rem;
    color: var(--text-soft);
    font-weight: 500;
  }

  .float-stat-card .lbl i {
    color: var(--purple);
    margin-right: 4px;
  }

  /* ===== TRUSTED BY ===== */
  .trusted-section {
    padding: 46px 0 50px;
    text-align: center;
  }

  .trusted-section h6 {
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 600;
    margin-bottom: 28px;
  }

  .logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }

  .logo-row .brand-logo {
    font-weight: 800;
    font-size: 1.55rem;
    color: #17203A;
    letter-spacing: .01em;
    transition: opacity .2s ease;
  }

  .logo-row .brand-logo:hover {
    opacity: .7;
  }

  .logo-row .brand-logo.outline {
    font-weight: 600;
    font-size: 1.25rem;
    font-style: italic;
    color: #E0483E;
    border: 2px solid #E0483E;
    padding: 5px 16px;
    border-radius: 5px;
  }

  .logo-row .brand-logo.stacked {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    color: #3F3D52;
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
  }

  /* ===== SECTION HEADERS ===== */
  .section-eyebrow {
    text-align: center;
    color: var(--purple);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 12px;
  }

  .section-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--text-main);
  }

  .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 54px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  /* ===== FEATURE GRID (6 cards) ===== */
  .features-grid-section {
    padding: 84px 0;
    background: #fff;
  }

  .feature-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 30px 26px;
    height: 100%;
    transition: all .25s ease;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
  }

  .feature-card .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--purple-light);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 18px;
  }

  .feature-card h5 {
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .feature-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.65;
  }

  /* ===== POWERFUL FEATURES SECTION ===== */
  .powerful-section {
    background: var(--bg-soft);
    padding: 84px 0;
  }

  .pf-item {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
  }

  .pf-item:last-child {
    margin-bottom: 0;
  }

  .pf-item .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid var(--border-soft);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: var(--shadow-card);
  }

  .pf-item h6 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.98rem;
  }

  .pf-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .pf-center-image {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    padding: 18px;
  }

  .pf-mock-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-right: 1px solid var(--border-soft);
    padding-right: 10px;
    margin-right: 12px;
    width: 76px;
    flex-shrink: 0;
  }

  .pf-mock-nav .pf-nav-item {
    font-size: 0.6rem;
    color: var(--text-soft);
    padding: 6px 8px;
    border-radius: 6px;
  }

  .pf-mock-nav .pf-nav-item.active {
    background: var(--purple);
    color: #fff;
    font-weight: 600;
  }

  .pf-mock-body {
    flex: 1;
    min-width: 0;
  }

  .pf-mock-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  .pf-mock-top strong {
    font-size: 0.82rem;
  }

  .pf-mock-top span {
    font-size: 0.62rem;
    color: var(--text-soft);
  }

  .pf-mock-kpis {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
  }

  .pf-mock-kpis div {
    flex: 1;
    background: var(--bg-soft);
    border-radius: 8px;
    padding: 5px;
  }

  .pf-mock-kpis .kl {
    font-size: 0.56rem;
    color: var(--text-soft);
  }

  .pf-mock-kpis .kv {
    font-size: 0.86rem;
    font-weight: 800;
  }

  .pf-mock-kpis .kv.green {
    color: #16A34A;
  }

  .pf-mock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.66rem;
    border-bottom: 1px dashed var(--border-soft);
  }

  .pf-mock-row:last-child {
    border-bottom: none;
  }

  .pf-mock-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--purple-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 0.55rem;
    margin-right: 6px;
  }

  .pf-mock-bar {
    height: 5px;
    width: 50px;
    border-radius: 4px;
    background: var(--border-soft);
    overflow: hidden;
    display: inline-block;
  }

  .pf-mock-bar span {
    display: block;
    height: 100%;
    background: var(--purple);
  }

  /* ===== HOW NESTIO WORKS ===== */
  .how-section {
    background: linear-gradient(180deg, #F2FDFC 0%, #E4FAF8 100%);
    padding: 90px 0;
  }

  .step-card {
    text-align: center;
    padding: 10px;
    position: relative;
  }

  .step-num-circle {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #D6EFEC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--purple);
    position: relative;
    box-shadow: var(--shadow-card);
  }

  .step-num-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--purple);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(46, 196, 182, 0.35);
  }

  .step-card h6 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .step-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 210px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .step-arrow {
    position: absolute;
    top: 30px;
    right: -18%;
    color: #9FCFC9;
    font-size: 1.1rem;
  }

  /* ===== FINAL CTA ===== */
  .final-cta {
    padding: 90px 0 40px;
    text-align: center;
    background: #fff;
  }

  .final-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .final-cta p {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 32px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .final-cta-illustration {
    margin-top: 56px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
  }

  .final-cta-illustration svg {
    height: 100px;
    width: auto;
  }

  /* ===== FOOTER ===== */
  .site-footer {
    background: var(--navy);
    position: relative;
    padding: 56px 0 0;
  }

  .footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
  }

  /* --- Brand column --- */
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  .footer-logo .logo-icon {
    width: 130px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-desc {
    color: #9CA6BF;
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 22px;
  }

  .footer-social {
    display: flex;
    gap: 10px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7CFE0;
    font-size: 0.85rem;
    transition: all .2s ease;
  }

  .footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-3px);
  }

  /* --- Heading shared --- */
  .footer-col h6 {
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: 20px;
  }

  /* --- Quick Links column --- */
  .footer-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9CA6BF;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color .2s ease, padding-left .2s ease;
  }

  .footer-links a:first-child {
    padding-top: 0;
  }

  .footer-links a i {
    color: var(--teal);
    font-size: 0.75rem;
    transition: transform .2s ease;
  }

  .footer-links a:hover {
    color: #fff;
    padding-left: 4px;
  }

  .footer-links a:hover i {
    transform: translateX(3px);
  }

  /* --- Contact Us column --- */
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .footer-contact-item:last-child {
    margin-bottom: 0;
  }

  .footer-contact-item .icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(46, 196, 182, 0.15);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .footer-contact-item span {
    color: #D8DEEC;
    font-size: 0.89rem;
    font-weight: 500;
    word-break: break-word;
  }

  /* --- Bottom bar --- */
  .footer-bottom-bar {
    background: var(--teal);
    text-align: center;
    padding: 14px 20px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
  }

  .scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    border:var(--navy);
    color: var(--purple-dark);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    transition: all .3s ease;
    z-index: 9999;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
  }

  .scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
  }

  .scroll-top-btn:hover {
    /* background: var(--teal-dark); */
    transform: translateY(-4px);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      row-gap: 36px;
    }

    .footer-col.brand-col {
      grid-column: 1 / -1;
    }

    .footer-desc {
      max-width: 100%;
    }
  }

  @media (max-width: 575px) {
    .site-footer {
      padding-top: 44px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      padding-bottom: 36px;
    }

    .footer-logo {
      font-size: 1.2rem;
    }

    .scroll-top-btn {
      right: 16px;
      bottom: 10px;
      width: 40px;
      height: 40px;
      font-size: 0.9rem;
    }

    .footer-bottom-bar {
      font-size: 0.78rem;
      padding: 12px 16px;
    }
  }

  @media (max-width: 991px) {
    .hero h1 {
      font-size: 2.3rem;
    }

    .hero {
      padding: 50px 0 40px;
      text-align: center;
    }

    .hero p.lead-text {
      margin-left: auto;
      margin-right: auto;
    }

    .dashboard-mock {
      margin-top: 60px;
      /* width: 323px; */
    }

    .nav-links {
      display: none;
    }

    .section-title {
      font-size: 1.7rem;
    }

    .pf-item {
      text-align: left;
    }

    .step-arrow {
      display: none;
    }

    .stat-divider {
      display: none;
    }
  }


  /* ===== PAGE HERO BANNER ===== */
  .page-hero {
    position: relative;
    padding: 110px 0 110px;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(23, 32, 58, 0.82) 0%, rgba(23, 32, 58, 0.75) 40%, rgba(46, 196, 182, 0.55) 100%),
      url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
  }

  .page-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

  .page-hero .breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .page-hero .breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }

  .page-hero .breadcrumb-custom a:hover {
    color: #fff;
  }

  .page-hero .breadcrumb-custom i {
    font-size: 0.7rem;
    opacity: .7;
  }

  .page-hero .breadcrumb-custom span {
    color: #fff;
    font-weight: 600;
  }

 
  

  /* Sign Up  */

   /* ===== AUTH CARD WRAPPER ===== */
  .auth-wrapper{
    position:relative;
    z-index:1;
    display:flex;
    max-width: 980px;
    width:100%;
    background:#fff;
    border-radius: 24px;
    overflow:hidden;
    box-shadow: 0 30px 70px rgba(23,32,58,0.14);
  }

  /* ===== LEFT PANEL (photo + overlay card) ===== */
  .auth-visual{
    position:relative;
    flex: 0 0 42%;
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(23,32,58,0.15), rgba(23,32,58,0.35)),
      url('../images/20221212_b9_119.webp') center/cover no-repeat;
    display:flex;
    align-items:flex-end;
    padding: 32px;
  }
  .auth-visual-card{
    background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: 20px;
    padding: 30px 26px;
    color:#fff;
    width:100%;
    box-shadow: 0 20px 40px rgba(23,32,58,0.28);
  }
  .auth-visual-card h3{
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing:-0.01em;
  }
  .auth-visual-card p{
    font-size: 0.87rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
  }
  .auth-check-list{
    display:flex;
    flex-direction:column;
    gap: 12px;
  }
  .auth-check-list div{
    display:flex;
    align-items:center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight:500;
  }
  .auth-check-list i{
    width: 20px; height:20px;
    border-radius:50%;
    background: rgba(255,255,255,0.22);
    display:flex; align-items:center; justify-content:center;
    font-size: 0.62rem;
    flex-shrink:0;
  }

  /* ===== RIGHT PANEL (form) ===== */
  .auth-form-panel{
    flex:1;
    padding: 52px 56px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .auth-form-panel h2{
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing:-0.01em;
    margin-bottom: 6px;
  }
  .auth-form-panel .subtitle{
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 28px;
  }

  .form-group{ margin-bottom: 18px; }
  .form-group label{
    display:block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 7px;
  }
  .form-group label .req{ color: red; }
  .form-group input{
    width:100%;
    border: 1px solid var(--border-soft);
    background: #FAFBFC;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-family: inherit;
    transition: all .2s ease;
  }
  .form-group input::placeholder{ color:#A6ABB8; }
  .form-group input:focus{
    outline:none;
    border-color: var(--teal);
    background:#fff;
    box-shadow: 0 0 0 3px rgba(46,196,182,0.14);
  }
  .password-field{ position:relative; }
  .password-field input{ padding-right: 44px; }
  .password-toggle{
    position:absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background:none;
    border:none;
    color: var(--text-muted);
    cursor:pointer;
    font-size: 0.95rem;
    padding: 4px;
  }

  .togglePassword{
    position:absolute;
    right: 14px;
    top: 35%;
    transform: translateY(-50%);
    background:none;
    border:none;
    color: var(--text-muted);
    cursor:pointer;
    font-size: 0.95rem;
    padding: 4px;
  }
  .password-toggle:hover{ color: var(--teal); }

  .btn-create-account{
    width:100%;
    background: var(--teal);
    color:#fff;
    border:none;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 8px;
    margin-top: 8px;
    transition: all .2s ease;
  }
  .btn-create-account:hover{
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(46,196,182,0.32);
  }

  .auth-footer-note{
    text-align:center;
    font-size: 0.87rem;
    color: var(--text-muted);
    margin-top: 22px;
  }
  .auth-footer-note a{
    color: var(--teal);
    font-weight: 700;
  }
  .auth-footer-note a:hover{ text-decoration: underline; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px){
    .auth-wrapper{ flex-direction:column; max-width: 500px; border-radius: 20px; }
    .auth-visual{ flex: none; min-height: 300px; }
    .auth-form-panel{ padding: 40px 32px; }
  }
  @media (max-width: 480px){
    body{ padding: 24px 14px; }
    .auth-visual{ min-height: 260px; padding: 20px; }
    .auth-visual-card{ padding: 22px 18px; }
    .auth-visual-card h3{ font-size: 1.3rem; }
    .auth-form-panel{ padding: 32px 22px; }
    .auth-form-panel h2{ font-size: 1.4rem; }
  }

  .signup-page{
  --sp-teal: #2EC4B6;
  --sp-teal-dark: #26A99D;
  --sp-text-main: #1E1B2E;
  --sp-text-muted: #6B7280;
  --sp-border-soft: #E7E9EF;
  --sp-bg-page: #EAF6F4;
}

.signup-page, .signup-page * { box-sizing: border-box; }

.signup-page{
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--sp-bg-page);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  position: relative;
}

/* Dots */
.sp-dot-tl, .sp-dot-br {
  position: absolute;
  background-image: radial-gradient(#C9E9E5 2.5px, transparent 2.5px);
  background-size: 16px 16px;
}
.sp-dot-tl { top: 8%; left: 5%; width: 130px; height: 130px; opacity: 0.85; }
.sp-dot-br { bottom: 10%; right: 7%; width: 110px; height: 110px; opacity: 0.7; }

/* Main Wrapper */
.auth-wrapper{
  display: flex;
  max-width: 960px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(23,32,58,0.15);
  min-height: 450px;          
}

/* LEFT SIDE */
.auth-visual{
  flex: 0 0 44%;
  position: relative;
  background: 
    linear-gradient(to bottom, rgba(23,32,58,0.15), rgba(23,32,58,0.38)),
    url('../images/20221212_b9_119.webp') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 70px 70px;
}

.auth-visual-card{
  background: linear-gradient(160deg, #2EC4B6 0%, #26A99D 100%);
  border-radius: 16px;
  padding: 22px 20px;
  color: #fff;
  width: 100%;
}

.auth-visual-card h3{ 
  font-size: 1.38rem; 
  margin-bottom: 8px; 
}

.auth-visual-card p{ 
  font-size: 0.84rem; 
  line-height: 1.48; 
  margin-bottom: 15px; 
}

.auth-check-list div{
  font-size: 0.82rem;
  margin-bottom: 5px;
}

/* RIGHT FORM - Aur Compact */
.auth-form-panel{
  flex: 1;
  padding: 25px 45px;          
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-form-panel h2{
  font-size: 1.52rem;
  margin-bottom: 5px;
}

.subtitle{
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.form-group{ 
  margin-bottom: 13px; 
}

.form-group label{
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.form-group input{
  padding: 10px 14px;
  font-size: 0.9rem;
  border-radius: 8px;
}

.password-field input { padding-right: 40px; }

.btn-create-account{
  padding: 11.5px;
  margin-top: 6px;
  font-size: 0.93rem;
}

.auth-footer-note{
  margin-top: 16px;
  font-size: 0.85rem;
}

/* ================= DARK LEFT PANEL FOR SIGN IN ================= */
.auth-visual-dark{
  flex: 0 0 44%;
  position: relative;
  background: 
    linear-gradient(180deg, rgba(23,32,58,0.45), rgba(23,32,58,0.65)),
    url('../images/20221212_b9_119.webp') center/cover no-repeat;
  display: flex;
  align-items: flex-start;    
  padding: 50px 34px 40px;    
}

.auth-visual-card-dark{
  border-radius: 18px;
  padding: 28px 26px;
  color: #fff;
  width: 100%;
  max-width: 340px;
}

.auth-visual-card-dark h3{
  font-size: 1.58rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.auth-visual-card-dark p{
  font-size: 0.91rem;
  line-height: 1.55;
  opacity: 0.95;
}

/* Form side thoda adjust */
.auth-form-panel{
  padding: 38px 48px;
}
/* ================= SIGN IN SPECIFIC STYLES ================= */
.auth-form-panel .forgot-link {
  text-align: right;
  margin-bottom: 12px;
}

.auth-form-panel .forgot-link a {
  color: var(--sp-teal);
  font-size: 0.85rem;
  font-weight: 500;
}

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  color: var(--sp-text-muted);
  font-size: 0.85rem;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sp-border-soft);
}

.divider span {
  background: #fff;
  padding: 0 15px;
}

.btn-google {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 6px;
  border-radius: 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  cursor: pointer;
  margin-bottom: 18px;
  transition: all 0.2s;
}

.btn-google:hover {
  background: #f8f8f8;
  border-color: #ccc;
}

.btn-google img {
  width: 60px;
  height: 40px;
}
  
  /* VERIFY EMAIL  */
  
.verify-page{
  --vf-teal-dark:#1fa39b;
  --vf-teal:#15807c;
  --vf-teal-light:#1fa39b;
  --vf-ink:#1fa39b;
  --vf-muted:#8a97a0;
  --vf-card-shadow: 0 25px 60px -15px rgba(15,61,62,0.25);

  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  padding: 40px 0;
  background: radial-gradient(circle at 15% 20%, #eaf7f5 0%, transparent 45%),
              radial-gradient(circle at 85% 80%, #eaf7f5 0%, transparent 45%),
              #f7f9fb;
}

/* decorative background dots / rings — prefixed so they never clash with
   any .deco class you might already use elsewhere on the site */
.verify-page .deco{
  position:absolute;
  border-radius:50%;
  z-index:0;
}
.verify-page .deco-ring{
  border:2px solid #dbe7e6;
  background:transparent;
}
.verify-page .deco-1{ width:70px; height:70px; top:8%; left:10%; }
.verify-page .deco-2{ width:18px; height:18px; top:20%; left:22%; background:#cfe9e6; border:none;}
.verify-page .deco-3{ width:110px; height:110px; bottom:10%; left:6%; }
.verify-page .deco-4{ width:14px; height:14px; bottom:22%; left:20%; background:#cfe9e6; border:none;}
.verify-page .deco-5{ width:60px; height:60px; top:10%; right:8%; }
.verify-page .deco-6{ width:16px; height:16px; top:26%; right:20%; background:#cfe9e6; border:none;}
.verify-page .deco-7{ width:90px; height:90px; bottom:8%; right:6%; }
.verify-page .deco-8{ width:12px; height:12px; bottom:24%; right:22%; background:#cfe9e6; border:none;}

.verify-page .card-wrap{
  position:relative;
  z-index:1;
  width:100%;
  max-width:400px;
  padding:0 16px;
}

.verify-page .verify-card{
  background:#ffffff;
  border-radius:22px;
  box-shadow: var(--vf-card-shadow);
  padding:44px 34px 36px;
  text-align:center;
}

/* envelope illustration */
.verify-page .illustration{
  width:104px;
  height:104px;
  margin:0 auto 22px;
  position:relative;
}
.verify-page .illustration .bg-blob{
  position:absolute;
  inset:0;
  background: radial-gradient(circle, #eaf7f5 0%, rgba(234,247,245,0) 70%);
  border-radius:50%;
}
.verify-page .illustration .dot{
  position:absolute;
  border-radius:50%;
  background:#bfe3df;
}
.verify-page .illustration .dot1{ width:8px; height:8px; top:2px; left:14px; }
.verify-page .illustration .dot2{ width:6px; height:6px; top:18px; right:4px; background:#a9d8d3;}
.verify-page .illustration .dot3{ width:5px; height:5px; bottom:10px; left:2px; background:#a9d8d3;}
.verify-page .illustration .dot4{ width:7px; height:7px; bottom:0; right:16px; }

.verify-page .envelope{
  position:absolute;
  left:50%;
  top:52%;
  transform:translate(-50%,-50%);
  width:66px;
  height:52px;
  background:linear-gradient(160deg, #1c8f89 0%, #0f3d3e 100%);
  border-radius:8px;
  box-shadow:0 10px 20px -6px rgba(15,61,62,0.45);
}
.verify-page .envelope::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0;
  height:0;
  border-left:33px solid transparent;
  border-right:33px solid transparent;
  border-top:26px solid #14615c;
  border-radius:8px 8px 0 0;
}
.verify-page .envelope::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0;
  height:0;
  border-left:33px solid transparent;
  border-right:33px solid transparent;
  border-top:22px solid #ffffff;
  opacity:0.12;
}
.verify-page .check-badge{
  position:absolute;
  left:50%;
  top:44%;
  transform:translate(-50%,-50%);
  width:34px;
  height:34px;
  background:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 14px -4px rgba(15,61,62,0.35);
  z-index:2;
}
.verify-page .check-badge i{
  color:var(--vf-teal);
  font-size:18px;
  font-weight:bold;
}

/* lock illustration — used on Reset Password page */
.verify-page .lock-circle{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:66px;
  height:66px;
  border-radius:50%;
  background:linear-gradient(160deg, #1c8f89 0%, #0f3d3e 100%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 20px -6px rgba(15,61,62,0.45);
}

.verify-page h1.title{
  font-size:1.5rem;
  font-weight:700;
  color:var(--vf-ink);
  margin-bottom:10px;
}

.verify-page p.subtitle{
  color:var(--vf-muted);
  font-size:0.92rem;
  line-height:1.5;
  margin-bottom:26px;
  padding:0 6px;
}

.verify-page .form-label{
  display:block;
  text-align:left;
  font-size:0.82rem;
  font-weight:600;
  color:var(--vf-ink);
  margin-bottom:6px;
}

.verify-page .form-control-custom{
  width:100%;
  padding:11px 14px;
  border-radius:10px;
  border:1.5px solid #e3e8ea;
  font-size:0.92rem;
  color:var(--vf-ink);
  background:#fbfcfd;
  margin-bottom:20px;
  transition:border-color .2s, box-shadow .2s;
}
.verify-page .form-control-custom::placeholder{
  color:#b7c0c5;
}
.verify-page .form-control-custom:focus{
  outline:none;
  border-color:var(--vf-teal-light);
  box-shadow:0 0 0 3px rgba(31,163,155,0.15);
  background:#fff;
}
.verify-page .form-control-custom.is-invalid{
  border-color:#d9534f;
}

.verify-page .btn-verify{
  width:100%;
  border:none;
  padding:12px 14px;
  border-radius:10px;
  background:linear-gradient(135deg, var(--vf-teal-light) 0%, var(--vf-teal-dark) 100%);
  color:#fff;
  font-weight:600;
  font-size:0.95rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-shadow:0 10px 20px -8px rgba(15,61,62,0.55);
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.verify-page .btn-verify:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 24px -8px rgba(15,61,62,0.6);
  color:#fff;
}
.verify-page .btn-verify:active{
  transform:translateY(0);
}
.verify-page .btn-verify:disabled{
  opacity:0.7;
  cursor:not-allowed;
  transform:none;
}

.verify-page .footer-text{
  margin-top:18px;
  font-size:0.85rem;
  color:var(--vf-muted);
}
.verify-page .footer-text a{
  color:var(--vf-teal);
  font-weight:600;
  text-decoration:none;
}
.verify-page .footer-text a:hover{
  text-decoration:underline;
}

.verify-page .invalid-msg{
  display:none;
  text-align:left;
  color:#d9534f;
  font-size:0.78rem;
  margin-top:-14px;
  margin-bottom:14px;
}
.verify-page .was-validated .invalid-msg{
  display:block;
}

@media (max-width:420px){
  .verify-page .verify-card{ padding:34px 22px 28px; }
}
  



